- Finished implementation of ContentProject (needs detailed testing though, not tested yet: saving/loading BuildItems, Saving loading References) Content Compiler: - Implemented opening of saved projects
33 lines
826 B
C#
33 lines
826 B
C#
using System.Windows.Forms;
|
|
|
|
namespace ANX.ContentCompiler.GUI.States
|
|
{
|
|
public partial class StartState : UserControl
|
|
{
|
|
public StartState()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void SetUpColor()
|
|
{
|
|
BackColor = Settings.MainColor;
|
|
ForeColor = Settings.ForeColor;
|
|
}
|
|
|
|
private void StartStateLoad(object sender, System.EventArgs e)
|
|
{
|
|
SetUpColor();
|
|
}
|
|
|
|
private void ArrowButtonNewClick(object sender, System.EventArgs e)
|
|
{
|
|
MainWindow.Instance.NewProject(sender, e);
|
|
}
|
|
|
|
private void ArrowButtonLoadClick(object sender, System.EventArgs e)
|
|
{
|
|
MainWindow.Instance.OpenProjectDialog(sender, e);
|
|
}
|
|
}
|
|
} |