16 references to HotTrack
System.Drawing.Common.Tests (4)
System\Drawing\ColorTranslatorTests.cs (2)
28yield return (unchecked((int)0x8000001A), SystemColors.HotTrack); 247yield return new object[] { SystemColors.HotTrack, "highlight" };
System\Drawing\SystemBrushesTests.cs (1)
29yield return Brush(() => SystemBrushes.HotTrack, SystemColors.HotTrack);
System\Drawing\SystemPensTest.cs (1)
31yield return Pen(() => SystemPens.HotTrack, SystemColors.HotTrack);
System.Windows.Forms (10)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
5675using 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)
2850if (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;