9 writes to PropertySort
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
234PropertySort = PropertySort.Categorized | PropertySort.Alphabetical;
System.Windows.Forms.Tests (7)
System\Windows\Forms\PropertyGridTests.cs (7)
2320PropertySort = value 2327control.PropertySort = value; 2345control.PropertySort = value; 2353control.PropertySort = value; 4016propertyGrid.PropertySort = PropertySort.Alphabetical; 4019propertyGrid.PropertySort = PropertySort.Categorized; 4023propertyGrid.PropertySort = PropertySort.Alphabetical;
System.Windows.Forms.UI.IntegrationTests (1)
PropertyGridTests.cs (1)
278_propertyGrid.PropertySort = PropertySort.Alphabetical;
18 references to PropertySort
System.Windows.Forms.Tests (16)
System\Windows\Forms\AccessibleObjects\PropertyGridToolStripButton.PropertyGridToolStripButtonAccessibleObjectTests.cs (11)
81Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 87Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort); 93Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 109Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 115Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort); 121Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 137Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 143Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 159Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort); 165Assert.Equal(PropertySort.Alphabetical, propertyGrid.PropertySort); 171Assert.Equal(PropertySort.CategorizedAlphabetical, propertyGrid.PropertySort);
System\Windows\Forms\PropertyGridTests.cs (5)
133Assert.Equal(PropertySort.Categorized | PropertySort.Alphabetical, control.PropertySort); 2323Assert.Equal(value, control.PropertySort); 2328Assert.Equal(value, control.PropertySort); 2346Assert.Equal(value, control.PropertySort); 2354Assert.Equal(value, control.PropertySort);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
276_propertyGrid.PropertySort.Should().Be(PropertySort.CategorizedAlphabetical); 279_propertyGrid.PropertySort.Should().Be(PropertySort.Alphabetical);