19 references to Alphabetical
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (8)
234
PropertySort = PropertySort.Categorized | PropertySort.
Alphabetical
;
840
else if ((value & PropertySort.
Alphabetical
) != 0)
2272
key.SetValue(RegistryStateNames.AlphabeticalSort, PropertySort == PropertySort.
Alphabetical
? "1" : "0");
2284
PropertySort = PropertySort.Categorized | PropertySort.
Alphabetical
;
2293
? PropertySort.
Alphabetical
2294
: PropertySort.Categorized | PropertySort.
Alphabetical
;
3075
_propertySortValue = PropertySort.
Alphabetical
;
3078
_propertySortValue = PropertySort.
Alphabetical
| PropertySort.Categorized;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1311
if ((_propertySort & PropertySort.
Alphabetical
) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (1)
28
if ((sort & PropertySort.
Alphabetical
) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertySort.cs (1)
33
CategorizedAlphabetical =
Alphabetical
| Categorized,
System.Windows.Forms.Tests (6)
System\Windows\Forms\AccessibleObjects\PropertyGridToolStripButton.PropertyGridToolStripButtonAccessibleObjectTests.cs (3)
89
Assert.Equal(PropertySort.
Alphabetical
, propertyGrid.PropertySort);
117
Assert.Equal(PropertySort.
Alphabetical
, propertyGrid.PropertySort);
167
Assert.Equal(PropertySort.
Alphabetical
, propertyGrid.PropertySort);
System\Windows\Forms\PropertyGridTests.cs (3)
135
Assert.Equal(PropertySort.Categorized | PropertySort.
Alphabetical
, control.PropertySort);
4052
propertyGrid.PropertySort = PropertySort.
Alphabetical
;
4059
propertyGrid.PropertySort = PropertySort.
Alphabetical
;
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
278
_propertyGrid.PropertySort = PropertySort.
Alphabetical
;
279
_propertyGrid.PropertySort.Should().Be(PropertySort.
Alphabetical
);