Mud Designer:

- Deleted the Editors folder within the solution
 - Disabled the Edit Menu Item until it's menu items can be implemented
 - File->Exit now works
 - Help->About now works.
This commit is contained in:
Scionwest_cp 2010-01-09 18:19:14 -08:00
parent 774a5d9edd
commit 30a5ce61a3
4 changed files with 31 additions and 97 deletions

View file

@ -385,5 +385,16 @@ namespace MudDesigner
{
btnSaveObject_Click(null, null);
}
private void mnuAbout_Click(object sender, EventArgs e)
{
MessageBox.Show("Mud Designer.\n\nDownload at http://MudDesigner.Codeplex.com\n"
+ "Join the community at http://MudDesigner.DailyForum.net", "Mud Designer");
}
private void mnuExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}