2012-10-19 20:04:05 +00:00
|
|
|
|
#region Using Statements
|
|
|
|
|
using System.Windows.Forms;
|
2012-09-10 19:10:39 +00:00
|
|
|
|
using ANX.Framework.NonXNA.Development;
|
2012-10-19 20:04:05 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
// This file is part of the EES Content Compiler 4,
|
|
|
|
|
// © 2008 - 2012 by Eagle Eye Studios.
|
|
|
|
|
// The EES Content Compiler 4 is released under the Ms-PL license.
|
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
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")]
|
2012-10-19 20:04:05 +00:00
|
|
|
|
[PercentageComplete(100)]
|
2012-09-15 22:54:18 +00:00
|
|
|
|
[TestState(TestStateAttribute.TestState.Tested)]
|
2012-08-26 19:03:12 +00:00
|
|
|
|
public partial class FirstStartScreen : Form
|
|
|
|
|
{
|
2012-10-19 20:04:05 +00:00
|
|
|
|
#region Constructor
|
2012-08-26 19:03:12 +00:00
|
|
|
|
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
|
|
|
|
}
|
2012-10-19 20:04:05 +00:00
|
|
|
|
#endregion
|
2012-09-15 22:54:18 +00:00
|
|
|
|
|
2012-10-19 20:04:05 +00:00
|
|
|
|
#region Private Methods
|
2012-09-15 22:54:18 +00:00
|
|
|
|
private void Button2Click(object sender, System.EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MainWindow.Instance.StartShow();
|
|
|
|
|
}
|
2012-10-19 20:04:05 +00:00
|
|
|
|
#endregion
|
2012-08-26 19:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|