22 lines
457 B
C#
22 lines
457 B
C#
using WeifenLuo.WinFormsUI.Docking;
|
|
|
|
namespace ServiceMonitor;
|
|
|
|
public partial class MainForm : Form
|
|
{
|
|
public MainForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
_dockPanel.Theme = new VS2015BlueTheme();
|
|
}
|
|
|
|
protected override void OnLoad(EventArgs e)
|
|
{
|
|
base.OnLoad(e);
|
|
|
|
ProcessDockContent content = new ProcessDockContent(ApplicationDescriptor.CzechWorker);
|
|
content.Show(_dockPanel, DockState.Document);
|
|
}
|
|
}
|