5 overrides of TabName
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (1)
11public override string TabName => SR.PBRSToolTipProperties;
System\Windows\Forms\Design\EventsTab.cs (1)
24public override string TabName => SR.PBRSToolTipEvents;
System.Windows.Forms.Tests (3)
System\Windows\Forms\Design\PropertyTabTests.cs (1)
190public override string TabName => "TabName";
System\Windows\Forms\PropertyGrid.PropertyTabCollectionTests.cs (1)
170public override string TabName => "Test Tab";
System\Windows\Forms\PropertyGridTests.cs (1)
2378public override string TabName => "TestTabName";
7 references to TabName
System.Windows.Forms (7)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (6)
1517if (string.Compare(tab.TabName, current.TabName, ignoreCase: false, CultureInfo.InvariantCulture) < 0) 1526tab.TabName, 1696if (string.IsNullOrEmpty(tab.TabName)) 3401_viewTabProperties.Remove($"{selectedTab.TabName}{_propertySortValue}"); 4150string tabName = $"{_selectedTab?.Tab.TabName}{_propertySortValue}";
System\Windows\Forms\Design\PropertyTab.cs (1)
78public virtual string? HelpKeyword => TabName;