30 lines
611 B
C#
30 lines
611 B
C#
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace Switch_Toolbox.Library.Forms
|
|||
|
{
|
|||
|
public class STUserControl : UserControl
|
|||
|
{
|
|||
|
public STUserControl()
|
|||
|
{
|
|||
|
BackColor = FormThemes.BaseTheme.FormBackColor;
|
|||
|
ForeColor = FormThemes.BaseTheme.FormForeColor;
|
|||
|
}
|
|||
|
|
|||
|
public virtual void OnControlClosing()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// STUserControl
|
|||
|
//
|
|||
|
this.Name = "STUserControl";
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|