1 override of DisplayName
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerActionVerbItem.cs (1)
19public override string DisplayName => _targetVerb.Text;
1 write to DisplayName
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionItem.cs (1)
21DisplayName = displayName is null ? null : SanitizeNameRegex().Replace(displayName, "");
8 references to DisplayName
System.Windows.Forms.Design (8)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
53_checkBox.Text = StripAmpersands(PropertyItem!.DisplayName);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (2)
76ActionPanel.ShowError(string.Format(SR.DesignerActionPanel_ErrorInvokingAction, _methodItem!.DisplayName, Environment.NewLine + ex.Message)); 90_linkLabel.Text = StripAmpersands(_methodItem.DisplayName);
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (1)
114_titleLabel.Text = _panelHeaderItem.DisplayName;
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (2)
127_label.Text = StripAmpersands(PropertyItem!.DisplayName); 150EditControl.AccessibleName = StripAmpersands(PropertyItem.DisplayName);
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
67_label.Text = StripAmpersands(_textItem.DisplayName);
System\ComponentModel\Design\MenuCommandService.cs (1)
233DesignerVerb verb = new(dami.DisplayName!, handler);