2012-10-19 20:04:05 +00:00
|
|
|
|
#region Using Statements
|
|
|
|
|
using System;
|
2012-09-10 19:10:39 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
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.States
|
|
|
|
|
{
|
2012-09-10 19:10:39 +00:00
|
|
|
|
[Developer("SilentWarrior/Eagle Eye Studios")]
|
|
|
|
|
[PercentageComplete(100)]
|
|
|
|
|
[TestState(TestStateAttribute.TestState.Tested)]
|
2012-08-26 19:03:12 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 19:10:39 +00:00
|
|
|
|
private void StartStateLoad(object sender, EventArgs e)
|
2012-08-27 19:09:10 +00:00
|
|
|
|
{
|
|
|
|
|
SetUpColor();
|
|
|
|
|
}
|
2012-08-29 15:57:35 +00:00
|
|
|
|
|
2012-09-10 19:10:39 +00:00
|
|
|
|
private void ArrowButtonNewClick(object sender, EventArgs e)
|
2012-08-29 15:57:35 +00:00
|
|
|
|
{
|
|
|
|
|
MainWindow.Instance.NewProject(sender, e);
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 19:10:39 +00:00
|
|
|
|
private void ArrowButtonLoadClick(object sender, EventArgs e)
|
2012-08-29 15:57:35 +00:00
|
|
|
|
{
|
2012-08-30 22:02:16 +00:00
|
|
|
|
MainWindow.Instance.OpenProjectDialog(sender, e);
|
2012-08-29 15:57:35 +00:00
|
|
|
|
}
|
2012-08-26 19:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|