28 references to Label
System.Windows.Forms (28)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (14)
428
_commandsPane.
Label
.BackColor = value;
443
_commandsPane.
Label
.ForeColor = value;
454
get => _commandsPane.
Label
.LinkColor;
455
set => _commandsPane.
Label
.LinkColor = value;
465
get => _commandsPane.
Label
.ActiveLinkColor;
466
set => _commandsPane.
Label
.ActiveLinkColor = value;
476
get => _commandsPane.
Label
.DisabledLinkColor;
477
set => _commandsPane.
Label
.DisabledLinkColor = value;
3625
private void ResetCommandsLinkColor() => _commandsPane.
Label
.ResetLinkColor();
3627
private void ResetCommandsActiveLinkColor() => _commandsPane.
Label
.ResetActiveLinkColor();
3629
private void ResetCommandsDisabledLinkColor() => _commandsPane.
Label
.ResetDisabledLinkColor();
4038
private bool ShouldSerializeCommandsLinkColor() => _commandsPane.
Label
.ShouldSerializeLinkColor();
4040
private bool ShouldSerializeCommandsActiveLinkColor() => _commandsPane.
Label
.ShouldSerializeActiveLinkColor();
4042
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]);