2 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;
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)) 3397_viewTabProperties.Remove($"{selectedTab.TabName}{_propertySortValue}"); 4140string tabName = $"{_selectedTab?.Tab.TabName}{_propertySortValue}";
System\Windows\Forms\Design\PropertyTab.cs (1)
78public virtual string? HelpKeyword => TabName;