37 references to PropertySort
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 (33)
winforms\Managed\System\WinForms\PropertyGrid.cs (21)
69private PropertySort propertySortValue; 274this.PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 1069DefaultValue(PropertySort.CategorizedAlphabetical), 1072public PropertySort PropertySort { 1078if (!ClientUtils.IsEnumValid(value, (int)value, (int)PropertySort.NoSort, (int)PropertySort.CategorizedAlphabetical)){ 1079throw new InvalidEnumArgumentException("value", (int)value, typeof(PropertySort)); 1083if ((value & PropertySort.Categorized) != 0) { 1086else if ((value & PropertySort.Alphabetical) != 0) { 1475return (PropertySort & PropertySort.Categorized) != 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; 3505propertySortValue = PropertySort.NoSort; 4227optRoot.SetValue("PbrsAlpha", (this.PropertySort == PropertySort.Alphabetical ? "1" : "0"));
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (3)
119protected PropertySort PropertySort; 1140internal static IRootGridEntry Create(PropertyGridView view, object[] rgobjs, IServiceProvider baseProvider, IDesignerHost currentHost, PropertyTab tab, PropertySort initialSortType) { 1573if ((this.PropertySort & PropertySort.Alphabetical) != 0)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (3)
30internal MultiSelectRootGridEntry(PropertyGridView view, object obj, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) 88public static MultiPropertyDescriptorGridEntry[] GetMergedProperties(object[] rgobjs, GridEntry parentEntry, PropertySort sort, PropertyTab tab) { 95if((sort & PropertySort.Alphabetical) != 0) {
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (6)
42internal SingleSelectRootGridEntry(PropertyGridView gridEntryHost, object value, GridEntry parent, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) 62internal SingleSelectRootGridEntry(PropertyGridView view, object value, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab, PropertySort sortType) : this(view, value,null, baseProvider, host, tab, sortType) { 281if (((this.PropertySort &= PropertySort.Categorized) !=0) != fCategories) { 284this.PropertySort |= PropertySort.Categorized; 287this.PropertySort &= ~PropertySort.Categorized; 304if ((this.PropertySort & PropertySort.Categorized) != 0) {
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
364this.propertiesGrid.PropertySort = PropertySort.Categorized;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
252this.genericParametersPropertyGrid.PropertySort = System.Windows.Forms.PropertySort.Categorized;