1 override of DisplayName
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerActionVerbItem.cs (1)
19
public override string
DisplayName
=> _targetVerb.Text;
1 write to DisplayName
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionItem.cs (1)
21
DisplayName
= 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)
76
ActionPanel.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
);
150
EditControl.AccessibleName = StripAmpersands(PropertyItem.
DisplayName
);
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
67
_label.Text = StripAmpersands(_textItem.
DisplayName
);
System\ComponentModel\Design\MenuCommandService.cs (1)
233
DesignerVerb verb = new(dami.
DisplayName
!, handler);