19 references to Alphabetical
System.Windows.Forms (11)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (8)
234PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 843else if ((value & PropertySort.Alphabetical) != 0) 2278key.SetValue(RegistryStateNames.AlphabeticalSort, PropertySort == PropertySort.Alphabetical ? "1" : "0"); 2290PropertySort = PropertySort.Categorized | PropertySort.Alphabetical; 2299? PropertySort.Alphabetical 2300: PropertySort.Categorized | PropertySort.Alphabetical; 3081_propertySortValue = PropertySort.Alphabetical; 3084_propertySortValue = PropertySort.Alphabetical | PropertySort.Categorized;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1317if ((_propertySort & PropertySort.Alphabetical) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiSelectRootGridEntry.PropertyMerger.cs (1)
28if ((sort & PropertySort.Alphabetical) != 0)
System\Windows\Forms\Controls\PropertyGrid\PropertySort.cs (1)
33CategorizedAlphabetical = Alphabetical | Categorized,
System.Windows.Forms.Tests (6)
System\Windows\Forms\AccessibleObjects\PropertyGridToolStripButton.PropertyGridToolStripButtonAccessibleObjectTests.cs (3)
87Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort); 115Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort); 165Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort);
System\Windows\Forms\PropertyGridTests.cs (3)
133Assert.Equal(PropertySort.Categorized | PropertySort.Alphabetical, control.PropertySort); 4016propertyGrid.PropertySort = PropertySort.Alphabetical; 4023propertyGrid.PropertySort = PropertySort.Alphabetical;
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
278_propertyGrid.PropertySort = PropertySort.Alphabetical; 279_propertyGrid.PropertySort.Should().Be(PropertySort.Alphabetical);