mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
18 lines
375 B
C#
18 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);
|
|
}
|
|
}
|
|
}
|