13 references to Categorized
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (6)
234
PropertySort = PropertySort.
Categorized
| PropertySort.Alphabetical;
839
if ((value & PropertySort.
Categorized
) != 0)
1169
internal bool SortedByCategories => (PropertySort & PropertySort.
Categorized
) != 0;
2290
PropertySort = PropertySort.
Categorized
| PropertySort.Alphabetical;
2300
: PropertySort.
Categorized
| PropertySort.Alphabetical;
3084
_propertySortValue = PropertySort.Alphabetical | PropertySort.
Categorized
;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (4)
219
if (((_propertySort &= PropertySort.
Categorized
) != 0) != sortByCategories)
223
_propertySort |= PropertySort.
Categorized
;
227
_propertySort &= ~PropertySort.
Categorized
;
243
if (Children.Count == 0 || (_propertySort & PropertySort.
Categorized
) == 0)
System\Windows\Forms\Controls\PropertyGrid\PropertySort.cs (1)
33
CategorizedAlphabetical = Alphabetical |
Categorized
,
System.Windows.Forms.Tests (2)
System\Windows\Forms\PropertyGridTests.cs (2)
133
Assert.Equal(PropertySort.
Categorized
| PropertySort.Alphabetical, control.PropertySort);
4019
propertyGrid.PropertySort = PropertySort.
Categorized
;