13 references to Alphabetical
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
169
this._pgProperties.PropertySort = System.Windows.Forms.PropertySort.
Alphabetical
;
UI\MobileControls\Design\StylesEditorDialog.cs (1)
298
_propertyBrowser.PropertySort = PropertySort.
Alphabetical
;
System.Windows.Forms (11)
winforms\Managed\System\WinForms\PropertyGrid.cs (8)
274
this.PropertySort = PropertySort.Categorized | PropertySort.
Alphabetical
;
1086
else if ((value & PropertySort.
Alphabetical
) != 0) {
2685
this.PropertySort = PropertySort.
Alphabetical
;
2688
this.PropertySort = PropertySort.Categorized | PropertySort.
Alphabetical
;
2725
this.PropertySort = PropertySort.Categorized | PropertySort.
Alphabetical
;
3499
propertySortValue = PropertySort.
Alphabetical
;
3502
propertySortValue = PropertySort.
Alphabetical
| PropertySort.Categorized;
4227
optRoot.SetValue("PbrsAlpha", (this.PropertySort == PropertySort.
Alphabetical
? "1" : "0"));
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1573
if ((this.PropertySort & PropertySort.
Alphabetical
) != 0)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
95
if((sort & PropertySort.
Alphabetical
) != 0) {
winforms\Managed\System\WinForms\PropertySort.cs (1)
49
CategorizedAlphabetical =
Alphabetical
| Categorized,