13 references to Alphabetical
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
169this._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)
274this.PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 1086else if ((value & PropertySort.Alphabetical) != 0) { 2685this.PropertySort = PropertySort.Alphabetical; 2688this.PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 2725this.PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 3499propertySortValue = PropertySort.Alphabetical; 3502propertySortValue = PropertySort.Alphabetical | PropertySort.Categorized; 4227optRoot.SetValue("PbrsAlpha", (this.PropertySort == PropertySort.Alphabetical ? "1" : "0"));
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1573if ((this.PropertySort & PropertySort.Alphabetical) != 0)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
95if((sort & PropertySort.Alphabetical) != 0) {
winforms\Managed\System\WinForms\PropertySort.cs (1)
49CategorizedAlphabetical = Alphabetical | Categorized,