SND\eagleeyestudios_cp 8b735c16c2 Content Compiler:
- Added Developer Attributes & did some cleaning
- Fixed RibbonButton image aligning bug (Worldicon not centered)
- Added some comments to da code
- Implemented cleaning of ContentProject (Deleting bin files)
2012-09-10 19:10:39 +00:00

24 lines
1.0 KiB
C#

using System.Windows.Forms;
using ANX.Framework.NonXNA.Development;
namespace ANX.ContentCompiler.GUI.Dialogues
{
[Developer("SilentWarrior/Eagle Eye Studios")]
[PercentageComplete(80)] //TODO: Implement tour in MainWindow and launch it from here!
[TestState(TestStateAttribute.TestState.Untested)]
public partial class FirstStartScreen : Form
{
public FirstStartScreen()
{
InitializeComponent();
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;
}
}
}