19 lines
375 B
C#
19 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WeifenLuo.WinFormsUI.Docking;
|
|
using System.Drawing;
|
|
|
|
namespace Switch_Toolbox.Library
|
|
{
|
|
public class DockContentST : DockContent
|
|
{
|
|
public DockContentST()
|
|
{
|
|
BackColor = Color.FromArgb(33, 33, 33);
|
|
}
|
|
}
|
|
}
|