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