13 references to Categorized
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (6)
236PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 838if ((value & PropertySort.Categorized) != 0) 1168internal bool SortedByCategories => (PropertySort & PropertySort.Categorized) != 0; 2286PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 2296: PropertySort.Categorized | PropertySort.Alphabetical; 3080_propertySortValue = PropertySort.Alphabetical | PropertySort.Categorized;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (4)
219if (((_propertySort &= PropertySort.Categorized) != 0) != sortByCategories) 223_propertySort |= PropertySort.Categorized; 227_propertySort &= ~PropertySort.Categorized; 243if (Children.Count == 0 || (_propertySort & PropertySort.Categorized) == 0)
System\Windows\Forms\Controls\PropertyGrid\PropertySort.cs (1)
33CategorizedAlphabetical = Alphabetical | Categorized,
System.Windows.Forms.Tests (2)
System\Windows\Forms\PropertyGridTests.cs (2)
135Assert.Equal(PropertySort.Categorized | PropertySort.Alphabetical, control.PropertySort); 4055propertyGrid.PropertySort = PropertySort.Categorized;