using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.UserInterface { public class CommandBar { public class CommandBarCollection : System.Collections.ObjectModel.Collection { } private string mvarID = String.Empty; public string ID { get { return mvarID; } set { mvarID = value; } } private string mvarTitle = String.Empty; public string Title { get { return mvarTitle; } set { mvarTitle = value; } } private CommandItem.CommandItemCollection mvarItems = new CommandItem.CommandItemCollection(); public CommandItem.CommandItemCollection Items { get { return mvarItems; } } } }