6 writes to SelectType
System.Web.Mobile (6)
UI\MobileControls\Adapters\ChtmlSelectionListAdapter.cs (1)
54Control.SelectType = selectType = ListSelectType.CheckBox;
UI\MobileControls\Design\ListGeneralPage.cs (5)
363selectionList.SelectType = ListSelectType.DropDown; 366selectionList.SelectType = ListSelectType.ListBox; 369selectionList.SelectType = ListSelectType.Radio; 372selectionList.SelectType = ListSelectType.MultiSelectListBox; 375selectionList.SelectType = ListSelectType.CheckBox;
13 references to SelectType
System.Web.Mobile (13)
UI\MobileControls\Adapters\ChtmlSelectionListAdapter.cs (1)
48ListSelectType selectType = Control.SelectType;
UI\MobileControls\Adapters\HtmlSelectionListAdapter.cs (2)
54ListSelectType selectType = Control.SelectType; 268if(Control.SelectType == ListSelectType.DropDown &&
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicSelectionListAdapter.cs (7)
51switch(Control.SelectType) { 66if (Control.SelectType == ListSelectType.CheckBox) { 124if(Control.SelectType == ListSelectType.DropDown && 165ListSelectType selectType = Control.SelectType; 224if (Control.SelectType == ListSelectType.MultiSelectListBox) { 228if (Control.SelectType == ListSelectType.ListBox || Control.SelectType == ListSelectType.MultiSelectListBox) {
UI\MobileControls\Design\ListGeneralPage.cs (1)
256switch (selectionList.SelectType)
UI\MobileControls\SelectionList.cs (2)
186return (SelectType == ListSelectType.MultiSelectListBox || 187SelectType == ListSelectType.CheckBox);