1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/STUserControl.cs
2019-07-17 16:14:55 -04:00

32 lines
652 B
C#

using System.Windows.Forms;
namespace Toolbox.Library.Forms
{
public class STUserControl : UserControl
{
public string Text { get; set; } = "";
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);
}
}
}