2 instantiations of ObjectListCommand
System.Web.Mobile (2)
UI\MobileControls\Design\ObjectListCommandsPage.cs (1)
276internal CommandTreeNode(String name) : this(name, new ObjectListCommand())
UI\MobileControls\ObjectListCommandCollection.cs (1)
208Add(new ObjectListCommand(commandStates[i], commandStates[i + 1]));
20 references to ObjectListCommand
System.Web.Mobile (20)
UI\MobileControls\Adapters\HtmlObjectListAdapter.cs (2)
418foreach (ObjectListCommand command in commands) 485foreach (ObjectListCommand command in commands)
UI\MobileControls\Adapters\WmlObjectListAdapter.cs (1)
257foreach (ObjectListCommand command in commands)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicObjectListAdapter.cs (2)
266foreach (ObjectListCommand command in commands) { 339foreach (ObjectListCommand command in commands)
UI\MobileControls\Design\Converters\DefaultCommandConverter.cs (1)
35foreach(ObjectListCommand command in commands)
UI\MobileControls\Design\ObjectListCommandsPage.cs (4)
139foreach (ObjectListCommand command in _objectList.Commands) 271private ObjectListCommand _runtimeCommand; 282internal CommandTreeNode(String name, ObjectListCommand runtimeCommand) : base(name) 296internal ObjectListCommand RuntimeCommand
UI\MobileControls\ObjectList.cs (3)
536else if (obj is ObjectListCommand) 538Commands.Add((ObjectListCommand)obj); 1581return typeof(ObjectListCommand);
UI\MobileControls\ObjectListCommandCollection.cs (7)
73public ObjectListCommand this[int index] 77return (ObjectListCommand)Items[index]; 84foreach (ObjectListCommand command in Items) 93public void Add(ObjectListCommand command) 99public void AddAt(int index, ObjectListCommand command) 131foreach (ObjectListCommand command in Items) 170foreach (ObjectListCommand command in commands)