2012-08-26 19:03:12 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace ANX.ContentCompiler.GUI.States
|
|
|
|
|
{
|
|
|
|
|
public partial class StartState : UserControl
|
|
|
|
|
{
|
|
|
|
|
public StartState()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2012-08-27 19:09:10 +00:00
|
|
|
|
|
|
|
|
|
private void SetUpColor()
|
|
|
|
|
{
|
|
|
|
|
BackColor = Settings.MainColor;
|
|
|
|
|
ForeColor = Settings.ForeColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void StartState_Load(object sender, System.EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
SetUpColor();
|
|
|
|
|
}
|
2012-08-26 19:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|