28 references to Label
System.Windows.Forms (28)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (14)
434_commandsPane.Label.BackColor = value; 449_commandsPane.Label.ForeColor = value; 460get => _commandsPane.Label.LinkColor; 461set => _commandsPane.Label.LinkColor = value; 471get => _commandsPane.Label.ActiveLinkColor; 472set => _commandsPane.Label.ActiveLinkColor = value; 482get => _commandsPane.Label.DisabledLinkColor; 483set => _commandsPane.Label.DisabledLinkColor = value; 3671private void ResetCommandsLinkColor() => _commandsPane.Label.ResetLinkColor(); 3673private void ResetCommandsActiveLinkColor() => _commandsPane.Label.ResetActiveLinkColor(); 3675private void ResetCommandsDisabledLinkColor() => _commandsPane.Label.ResetDisabledLinkColor(); 4078private bool ShouldSerializeCommandsLinkColor() => _commandsPane.Label.ShouldSerializeLinkColor(); 4080private bool ShouldSerializeCommandsActiveLinkColor() => _commandsPane.Label.ShouldSerializeActiveLinkColor(); 4082private 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]);