5 overrides of Label
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
612public override string? Label => PropertyLabel;
System.Windows.Forms.Tests (4)
System\Windows\Forms\GridItemCollectionTests.cs (1)
63public override string Label => "label";
System\Windows\Forms\GridItemTests.cs (1)
54public override string Label => "label";
System\Windows\Forms\PropertyValueChangedEventArgsTests.cs (1)
32public override string Label { get; }
System\Windows\Forms\SelectedGridItemChangedEventArgsTests.cs (1)
34public override string Label { get; }
4 references to Label
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\GridItemCollection.cs (1)
42if (item.Label == label)
System.Windows.Forms.Tests (1)
System\Windows\Forms\PropertyGridTests.cs (1)
3932Assert.Equal("System.Object", selectedItem.Label);
System.Windows.Forms.UI.IntegrationTests (2)
PropertyGridTests.cs (2)
489_propertyGrid.SelectedGridItem!.Label.Should().Be("Text"); 492_propertyGrid.SelectedGridItem.Label.Should().Be("Accessibility");