13 instantiations of DropDownList
System.Web (13)
UI\WebParts\AppearanceEditorPart.cs (3)
183_chromeType = new DropDownList(); 197_direction = new DropDownList(); 337_type = new DropDownList();
UI\WebParts\BehaviorEditorPart.cs (2)
271_exportMode = new DropDownList(); 283_helpMode = new DropDownList();
UI\WebParts\CatalogZoneBase.cs (1)
647DropDownList zonesDropDownList = new DropDownList();
UI\WebParts\ConnectionsZone.cs (2)
810DropDownList list = new DropDownList(); 821DropDownList list = new DropDownList();
UI\WebParts\LayoutEditorPart.cs (2)
150_chromeState = new DropDownList(); 159_zone = new DropDownList();
UI\WebParts\PropertyGridEditorPart.cs (1)
198DropDownList dropDownList = new DropDownList();
UI\WebParts\RowToFieldTransformer.cs (1)
123_fieldName = new DropDownList();
UI\WebParts\RowToParametersTransformer.cs (1)
266DropDownList consumerFieldName = new DropDownList();
43 references to DropDownList
System.Web (43)
UI\WebControls\DropDownList.cs (6)
30/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.DropDownList'/> class.</para> 91/// from the <see cref='System.Web.UI.WebControls.DropDownList'/> 138/// <para>Process posted data for the <see cref='System.Web.UI.WebControls.DropDownList'/> control.</para> 147/// <para>Process posted data for the <see cref='System.Web.UI.WebControls.DropDownList'/> control.</para> 176/// <para>Raises events for the <see cref='System.Web.UI.WebControls.DropDownList'/> control on post back.</para> 185/// <para>Raises events for the <see cref='System.Web.UI.WebControls.DropDownList'/> control on post back.</para>
UI\WebControls\ListControl.cs (1)
265if ((t == typeof(DropDownList)) ||
UI\WebParts\AppearanceEditorPart.cs (3)
23private DropDownList _chromeType; 25private DropDownList _direction; 300private DropDownList _type;
UI\WebParts\BehaviorEditorPart.cs (2)
24private DropDownList _exportMode; 25private DropDownList _helpMode;
UI\WebParts\CatalogZoneBase.cs (1)
647DropDownList zonesDropDownList = new DropDownList();
UI\WebParts\ConnectionsZone.cs (18)
657DropDownList list = (DropDownList)_connectDropDownLists[consumerConnectionPoint]; 741DropDownList list = (DropDownList)_connectDropDownLists[providerConnectionPoint]; 810DropDownList list = new DropDownList(); 821DropDownList list = new DropDownList(); 1483DropDownList list = (DropDownList)_connectDropDownLists[provider]; 1576DropDownList list = (DropDownList)_connectDropDownLists[consumer]; 2127DropDownList list = (DropDownList)_connectDropDownLists[providerConnectionPoint]; 2182DropDownList list = (DropDownList)_connectDropDownLists[consumerConnectionPoint]; 2242DropDownList list = (DropDownList)_connectDropDownLists[_pendingConsumerConnectionPoint]; 2260DropDownList list = (DropDownList)_connectDropDownLists[_pendingProviderConnectionPoint];
UI\WebParts\LayoutEditorPart.cs (2)
19private DropDownList _chromeState; 20private DropDownList _zone;
UI\WebParts\PropertyGridEditorPart.cs (5)
198DropDownList dropDownList = new DropDownList(); 271DropDownList dropDownList = editorControl as DropDownList; 343DropDownList dropDownList = (DropDownList)control;
UI\WebParts\RowToFieldTransformer.cs (1)
94private DropDownList _fieldName;
UI\WebParts\RowToParametersTransformer.cs (4)
211private DropDownList[] _consumerFieldNames; 239_consumerFieldNames = new DropDownList[oldProviderNamesLength / 2]; 266DropDownList consumerFieldName = new DropDownList(); 337DropDownList consumerFieldName = _consumerFieldNames[i];