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