13 references to Categorized
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (6)
234PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 839if ((value & PropertySort.Categorized) != 0) 1169internal bool SortedByCategories => (PropertySort & PropertySort.Categorized) != 0; 2290PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 2300: PropertySort.Categorized | PropertySort.Alphabetical; 3084_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)
133Assert.Equal(PropertySort.Categorized | PropertySort.Alphabetical, control.PropertySort); 4019propertyGrid.PropertySort = PropertySort.Categorized;