2012-08-26 19:03:12 +00:00
|
|
|
|
using System.Windows.Forms;
|
2012-09-10 19:10:39 +00:00
|
|
|
|
using ANX.Framework.NonXNA.Development;
|
2012-08-26 19:03:12 +00:00
|
|
|
|
|
|
|
|
|
namespace ANX.ContentCompiler.GUI.Dialogues
|
|
|
|
|
{
|
2012-09-10 19:10:39 +00:00
|
|
|
|
[Developer("SilentWarrior/Eagle Eye Studios")]
|
|
|
|
|
[PercentageComplete(80)] //TODO: Implement tour in MainWindow and launch it from here!
|
|
|
|
|
[TestState(TestStateAttribute.TestState.Untested)]
|
2012-08-26 19:03:12 +00:00
|
|
|
|
public partial class FirstStartScreen : Form
|
|
|
|
|
{
|
|
|
|
|
public FirstStartScreen()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2012-08-27 19:09:10 +00:00
|
|
|
|
BackColor = Settings.MainColor;
|
|
|
|
|
ForeColor = Settings.ForeColor;
|
|
|
|
|
button1.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
|
|
|
button2.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
|
|
|
button3.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
|
|
|
button1.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
|
|
|
|
button2.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
|
|
|
|
button3.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
2012-08-26 19:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|