30 lines
604 B
C#
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);
|
|
|
|
}
|
|
}
|
|
}
|