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; 454get => _commandsPane.Label.LinkColor; 455set => _commandsPane.Label.LinkColor = value; 465get => _commandsPane.Label.ActiveLinkColor; 466set => _commandsPane.Label.ActiveLinkColor = value; 476get => _commandsPane.Label.DisabledLinkColor; 477set => _commandsPane.Label.DisabledLinkColor = value; 3625private void ResetCommandsLinkColor() => _commandsPane.Label.ResetLinkColor(); 3627private void ResetCommandsActiveLinkColor() => _commandsPane.Label.ResetActiveLinkColor(); 3629private void ResetCommandsDisabledLinkColor() => _commandsPane.Label.ResetDisabledLinkColor(); 4038private bool ShouldSerializeCommandsLinkColor() => _commandsPane.Label.ShouldSerializeLinkColor(); 4040private bool ShouldSerializeCommandsActiveLinkColor() => _commandsPane.Label.ShouldSerializeActiveLinkColor(); 4042private bool ShouldSerializeCommandsDisabledLinkColor() => _commandsPane.Label.ShouldSerializeDisabledLinkColor();
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CommandsPane.cs (14)
141Label.Focus(); 142Label.Invalidate(); 153Label.BackColor = background; 154Label.ForeColor = normalText; 155Label.LinkColor = link; 156Label.ActiveLinkColor = activeLink; 157Label.VisitedLinkColor = visitedLink; 158Label.DisabledLinkColor = disabledLink; 161public void FocusLabel() => Label.Focus(); 179Label.Links.Clear(); 180Label.Text = null; 205Label.Links.Clear(); 231Label.Text = sb.ToString(); 237LinkLabel.Link link = Label.Links.Add(links[i].X, links[i].Y, _verbs[i]);