Files
mRemoteNG/mRemoteV1/UI/Window/HelpWindow.cs
2020-05-26 10:39:05 +02:00

24 lines
583 B
C#

using CefSharp;
using mRemoteNG.Connection.Protocol.Http;
using System;
using WeifenLuo.WinFormsUI.Docking;
namespace mRemoteNG.UI.Window
{
public partial class HelpWindow : BaseWindow
{
public HelpWindow()
{
WindowType = WindowType.Help;
DockPnl = new DockContent();
InitializeComponent();
}
private void HelpWindow_Load(object sender, EventArgs e)
{
cefBrwoser.RequestHandler = new RequestHandler();
cefBrwoser.Load($@"{Cef.CefCommitHash}://help/");
}
}
}