31 references to PropertySort
System.Windows.Forms (31)
_generated\1\Validation.cs (2)
406
public static void Validate(System.Windows.Forms.
PropertySort
enumToValidate, string parameterName = "value")
410
ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.
PropertySort
));
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (18)
53
private
PropertySort
_propertySortValue;
240
PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
872
[DefaultValue(
PropertySort
.CategorizedAlphabetical)]
874
public
PropertySort
PropertySort
883
if ((value &
PropertySort
.Categorized) != 0)
887
else if ((value &
PropertySort
.Alphabetical) != 0)
1213
internal bool SortedByCategories => (PropertySort &
PropertySort
.Categorized) != 0;
2318
key.SetValue(RegistryStateNames.AlphabeticalSort, PropertySort ==
PropertySort
.Alphabetical ? "1" : "0");
2330
PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
2339
?
PropertySort
.Alphabetical
2340
:
PropertySort
.Categorized |
PropertySort
.Alphabetical;
3121
_propertySortValue =
PropertySort
.Alphabetical;
3124
_propertySortValue =
PropertySort
.Alphabetical |
PropertySort
.Categorized;
3127
_propertySortValue =
PropertySort
.NoSort;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (3)
49
protected
PropertySort
_propertySort;
883
PropertySort
initialSortType)
1308
if ((_propertySort &
PropertySort
.Alphabetical) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.cs (1)
24
PropertySort
sortType)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (2)
17
PropertySort
sort,
28
if ((sort &
PropertySort
.Alphabetical) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (5)
32
PropertySort
sortType)
219
if (((_propertySort &=
PropertySort
.Categorized) != 0) != sortByCategories)
223
_propertySort |=
PropertySort
.Categorized;
227
_propertySort &= ~
PropertySort
.Categorized;
243
if (Children.Count == 0 || (_propertySort &
PropertySort
.Categorized) == 0)