public Menu(string name, string label, IEnumerable <MenuItem> newItems) { this.Settings = new MenuSettings(); this.Name = name; this.Label = label; this.MenuItems = newItems; }
public MenuHandler() { current = new Stack <string>(); menus = new SortedDictionary <string, Menu>(); settings = new MenuSettings(); }