14 references to HotTrack
System.Drawing.Common (2)
System\Drawing\SystemBrushes.cs (1)
34public static Brush HotTrack => FromSystemColor(SystemColors.HotTrack);
System\Drawing\SystemPens.cs (1)
35public static Pen HotTrack => FromSystemColor(SystemColors.HotTrack);
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
5669using var brush = SystemColors.HotTrack.GetCachedSolidBrushScope();
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (4)
96return !ActiveLinkColor.Equals(SystemColors.HotTrack); 201? !LinkColor.Equals(SystemColors.HotTrack) 343return !VisitedLinkColor.Equals(SystemColors.HotTrack); 356return Selected ? SystemColors.HighlightText : SystemColors.HotTrack;
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkColumn.cs (3)
70return !ActiveLinkColor.Equals(SystemColors.HotTrack); 181return !LinkColor.Equals(SystemColors.HotTrack); 361return !VisitedLinkColor.Equals(SystemColors.HotTrack);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
238? SystemInformation.HighContrast ? SystemColors.HotTrack : IELinkColor
System\Windows\Forms\Controls\ListView\ListView.cs (1)
2864if (nmcd->clrText == ColorTranslator.ToWin32(SystemColors.HotTrack))
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.cs (2)
120public Color ActiveLinkColor { get; } = SystemColors.HotTrack; 178public Color LinkColor { get; } = SystemColors.HotTrack;