Working on a View menu
Making it possible to tell pop out windows to save states Took out some dead code
This commit is contained in:
parent
7d260d6cac
commit
a59b24c2d9
7 changed files with 158 additions and 18 deletions
|
|
@ -31,11 +31,17 @@ namespace MatterHackers.MatterControl
|
|||
this.HAnchor = HAnchor.ParentLeftRight;
|
||||
this.BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;
|
||||
|
||||
// put in the file menu
|
||||
MenuOptionFile menuOptionFile = new MenuOptionFile();
|
||||
this.AddChild(menuOptionFile);
|
||||
// put in the file menu
|
||||
MenuOptionFile menuOptionFile = new MenuOptionFile();
|
||||
this.AddChild(menuOptionFile);
|
||||
|
||||
// put in the help menu
|
||||
#if false
|
||||
// put in the view menu
|
||||
MenuOptionView menuOptionView = new MenuOptionView();
|
||||
this.AddChild(menuOptionView);
|
||||
#endif
|
||||
|
||||
// put in the help menu
|
||||
MenuOptionHelp menuOptionHelp = new MenuOptionHelp();
|
||||
this.AddChild(menuOptionHelp);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue