1
0
mirror of synced 2024-11-13 18:50:50 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/STUserControl.cs

30 lines
604 B
C#

using System.Windows.Forms;
namespace 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);
}
}
}