1
0
mirror of synced 2025-01-06 03:24:29 +01:00
Switch-Toolbox/Switch_Toolbox_Library/GUI Custom/DockContentCustom.cs

20 lines
428 B
C#
Raw Normal View History

2018-11-12 01:48:33 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WeifenLuo.WinFormsUI.Docking;
using WeifenLuo.WinFormsUI.ThemeVS2015;
namespace Switch_Toolbox.Library.Forms
{
public class DockPanelCustom : DockPanel
{
public DockPanelCustom()
{
var theme = new VS2015DarkTheme();
this.Theme = theme;
}
}
}