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; 456get => _commandsPane.Label.LinkColor; 457set => _commandsPane.Label.LinkColor = value; 467get => _commandsPane.Label.ActiveLinkColor; 468set => _commandsPane.Label.ActiveLinkColor = value; 478get => _commandsPane.Label.DisabledLinkColor; 479set => _commandsPane.Label.DisabledLinkColor = value; 3627private void ResetCommandsLinkColor() => _commandsPane.Label.ResetLinkColor(); 3629private void ResetCommandsActiveLinkColor() => _commandsPane.Label.ResetActiveLinkColor(); 3631private void ResetCommandsDisabledLinkColor() => _commandsPane.Label.ResetDisabledLinkColor(); 4040private bool ShouldSerializeCommandsLinkColor() => _commandsPane.Label.ShouldSerializeLinkColor(); 4042private bool ShouldSerializeCommandsActiveLinkColor() => _commandsPane.Label.ShouldSerializeActiveLinkColor(); 4044private 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]);