54 references to ObjectList
System.Web.Mobile (54)
UI\MobileControls\Adapters\HtmlObjectListAdapter.cs (2)
48protected new ObjectList Control 52return (ObjectList)base.Control;
UI\MobileControls\Adapters\WmlObjectListAdapter.cs (2)
46protected new ObjectList Control 50return (ObjectList)base.Control;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicObjectListAdapter.cs (2)
40protected new ObjectList Control { 42return base.Control as ObjectList;
UI\MobileControls\Design\CommandCollectionEditor.cs (4)
18using ObjectList = System.Web.UI.MobileControls.ObjectList; 56Debug.Assert(context.Instance is ObjectList, "Expected objectlist"); 57ObjectList _objectList = (ObjectList)context.Instance;
UI\MobileControls\Design\Converters\DataFieldConverter.cs (4)
97ObjectList objectList = null; 113if (owner is ObjectList) 115autoGenerateFields = ((ObjectList)owner).AutoGenerateFields; 134objectList = component as ObjectList;
UI\MobileControls\Design\Converters\DefaultCommandConverter.cs (5)
26private Object[] GetCommands(ObjectList objectList) 66ObjectList objectList = null; 69objectList = ((IDeviceSpecificChoiceDesigner)context.Instance).UnderlyingObject as ObjectList; 71else if (context.Instance is ObjectList) 73objectList = (ObjectList)context.Instance;
UI\MobileControls\Design\Converters\StyleReferenceConverter.cs (1)
49(instanceStyle.Control is ObjectList))
UI\MobileControls\Design\FieldCollectionEditor.cs (4)
18using ObjectList = System.Web.UI.MobileControls.ObjectList; 56Debug.Assert(context.Instance is ObjectList, "Expected objectlist"); 57ObjectList _objectList = (ObjectList)context.Instance;
UI\MobileControls\Design\ListComponentEditorPage.cs (1)
119Debug.Assert (component is ObjectList | component is List |
UI\MobileControls\Design\ObjectListCommandsPage.cs (3)
23using ObjectList = System.Web.UI.MobileControls.ObjectList; 40private ObjectList _objectList = null; 67this._objectList = (ObjectList)Component;
UI\MobileControls\Design\ObjectListComponentEditor.cs (3)
17/// Provides a component editor for a Mobile ObjectList <see cref='System.Web.UI.MobileControls.ObjectList'/> 21/// <seealso cref='System.Web.UI.MobileControls.ObjectList'/> 66/// Gets the set of all pages in the <see cref='System.Web.UI.MobileControls.ObjectList'/>
UI\MobileControls\Design\ObjectListDesigner.cs (3)
40private System.Web.UI.MobileControls.ObjectList _objectList; 77Debug.Assert(component is System.Web.UI.MobileControls.ObjectList, 80_objectList = (System.Web.UI.MobileControls.ObjectList) component;
UI\MobileControls\Design\ObjectListFieldsPage.cs (2)
42private ObjectList _objectList; 68this._objectList = (ObjectList)Component;
UI\MobileControls\Design\ObjectListGeneralPage.cs (4)
161ObjectList objectList = (ObjectList)GetBaseControl(); 194ObjectList objectList = (ObjectList)GetBaseControl();
UI\MobileControls\Design\TableFieldsEditor.cs (3)
51ObjectList objectList = context.Instance as ObjectList; 65if (context.Instance is ObjectList)
UI\MobileControls\ObjectListField.cs (2)
37private ObjectList _owner; 169internal void SetOwner(ObjectList owner) {
UI\MobileControls\ObjectListFieldCollection.cs (4)
31private ObjectList _owner; 36internal ObjectListFieldCollection(ObjectList owner) : base(new ArrayList()) 43internal ObjectListFieldCollection(ObjectList owner, ArrayList fields) : base(fields) 287ObjectList prevOwner = _owner;
UI\MobileControls\ObjectListItem.cs (3)
34private ObjectList _owner; 36internal ObjectListItem(ObjectList owner) : this(owner, null) 40internal ObjectListItem(ObjectList owner, Object dataItem) : base(dataItem, null, null)
UI\MobileControls\ObjectListItemCollection.cs (2)
33private ObjectList _owner; 36internal ObjectListItemCollection(ObjectList owner)