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