- Added missing FakeBuildLogger.cs - changed the preview implementation to support previewing while working in the main window (handy for multiple screens!) - Did some cleaning and added #region tags and copyright text
55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
#region Using Statements
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using ANX.Framework.NonXNA.Development;
|
|
#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
|
|
|
|
namespace ANX.ContentCompiler.GUI.Dialogues
|
|
{
|
|
[Developer("SilentWarrior/Eagle Eye Studios")]
|
|
[PercentageComplete(100)]
|
|
[TestState(TestStateAttribute.TestState.Tested)]
|
|
public partial class NewFolderScreen : Form
|
|
{
|
|
#region Constructor
|
|
public NewFolderScreen()
|
|
{
|
|
InitializeComponent();
|
|
SetUpColors();
|
|
}
|
|
#endregion
|
|
|
|
#region Private Methods
|
|
private void SetUpColors()
|
|
{
|
|
BackColor = Settings.MainColor;
|
|
ForeColor = Settings.ForeColor;
|
|
button3.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
buttonCancel.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
buttonNext.FlatAppearance.MouseOverBackColor = Settings.LightMainColor;
|
|
button3.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
|
buttonCancel.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
|
buttonNext.FlatAppearance.MouseDownBackColor = Settings.AccentColor3;
|
|
buttonNext.FlatAppearance.BorderColor = Settings.LightMainColor;
|
|
button3.FlatAppearance.BorderColor = Settings.LightMainColor;
|
|
buttonCancel.FlatAppearance.BorderColor = Settings.LightMainColor;
|
|
textBoxName.BackColor = Settings.DarkMainColor;
|
|
textBoxName.ForeColor = Settings.ForeColor;
|
|
}
|
|
|
|
private void ButtonNextClick(object sender, EventArgs e)
|
|
{
|
|
if (String.IsNullOrEmpty(textBoxName.Text))
|
|
MessageBox.Show("You need to type a name!", "Missing value", MessageBoxButtons.OK,
|
|
MessageBoxIcon.Warning);
|
|
else
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
#endregion
|
|
}
|
|
} |