28 references to Label
System.Windows.Forms (28)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (14)
430
_commandsPane.
Label
.BackColor = value;
445
_commandsPane.
Label
.ForeColor = value;
456
get => _commandsPane.
Label
.LinkColor;
457
set => _commandsPane.
Label
.LinkColor = value;
467
get => _commandsPane.
Label
.ActiveLinkColor;
468
set => _commandsPane.
Label
.ActiveLinkColor = value;
478
get => _commandsPane.
Label
.DisabledLinkColor;
479
set => _commandsPane.
Label
.DisabledLinkColor = value;
3627
private void ResetCommandsLinkColor() => _commandsPane.
Label
.ResetLinkColor();
3629
private void ResetCommandsActiveLinkColor() => _commandsPane.
Label
.ResetActiveLinkColor();
3631
private void ResetCommandsDisabledLinkColor() => _commandsPane.
Label
.ResetDisabledLinkColor();
4040
private bool ShouldSerializeCommandsLinkColor() => _commandsPane.
Label
.ShouldSerializeLinkColor();
4042
private bool ShouldSerializeCommandsActiveLinkColor() => _commandsPane.
Label
.ShouldSerializeActiveLinkColor();
4044
private bool ShouldSerializeCommandsDisabledLinkColor() => _commandsPane.
Label
.ShouldSerializeDisabledLinkColor();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CommandsPane.cs (14)
141
Label
.Focus();
142
Label
.Invalidate();
153
Label
.BackColor = background;
154
Label
.ForeColor = normalText;
155
Label
.LinkColor = link;
156
Label
.ActiveLinkColor = activeLink;
157
Label
.VisitedLinkColor = visitedLink;
158
Label
.DisabledLinkColor = disabledLink;
161
public void FocusLabel() =>
Label
.Focus();
179
Label
.Links.Clear();
180
Label
.Text = null;
205
Label
.Links.Clear();
231
Label
.Text = sb.ToString();
237
LinkLabel.Link link =
Label
.Links.Add(links[i].X, links[i].Y, _verbs[i]);