31 references to PropertySort
System.Windows.Forms (31)
_generated\1\Validation.cs (2)
398
public static void Validate(System.Windows.Forms.
PropertySort
enumToValidate, string parameterName = "value")
402
ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.
PropertySort
));
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (18)
53
private
PropertySort
_propertySortValue;
236
PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
827
[DefaultValue(
PropertySort
.CategorizedAlphabetical)]
829
public
PropertySort
PropertySort
838
if ((value &
PropertySort
.Categorized) != 0)
842
else if ((value &
PropertySort
.Alphabetical) != 0)
1168
internal bool SortedByCategories => (PropertySort &
PropertySort
.Categorized) != 0;
2270
key.SetValue(RegistryStateNames.AlphabeticalSort, PropertySort ==
PropertySort
.Alphabetical ? "1" : "0");
2282
PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
2291
?
PropertySort
.Alphabetical
2292
:
PropertySort
.Categorized |
PropertySort
.Alphabetical;
3073
_propertySortValue =
PropertySort
.Alphabetical;
3076
_propertySortValue =
PropertySort
.Alphabetical |
PropertySort
.Categorized;
3079
_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)