17 references to ControlLightLight
System.Drawing.Common (2)
System\Drawing\SystemBrushes.cs (1)
20public static Brush ControlLightLight => FromSystemColor(SystemColors.ControlLightLight);
System\Drawing\SystemPens.cs (1)
25public static Pen ControlLightLight => FromSystemColor(SystemColors.ControlLightLight);
System.Windows.Forms (14)
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.ColorOptions.cs (1)
44colors.Highlight = SystemColors.ControlLightLight;
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.cs (2)
148: stockColor ? SystemColors.ControlLightLight : colors.Highlight); 251: stockColor ? SystemColors.ControlLightLight : colors.Highlight);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (5)
1423int lightDistance = ColorDistance(baseline, SystemColors.ControlLightLight); 1436: SystemColors.ControlLightLight; 1446: SystemColors.ControlLightLight; 3146DataGridViewAdvancedCellBorderStyle.Inset => SystemColors.ControlLightLight, 3181DataGridViewAdvancedCellBorderStyle.Inset => SystemColors.ControlLightLight,
System\Windows\Forms\Design\ComponentEditorForm.PageSelector.cs (2)
160savedColor = PInvokeCore.SetBkColor(dc, (COLORREF)(uint)ColorTranslator.ToWin32(SystemColors.ControlLightLight)); 266COLORREF oldTextColor = PInvokeCore.SetTextColor(dc, (COLORREF)(uint)ColorTranslator.ToWin32(SystemColors.ControlLightLight));
System\Windows\Forms\Rendering\ControlPaint.cs (2)
1136using var lightPen = (stockColor ? SystemColors.ControlLightLight : hls.Lighter(1.0f)).GetCachedPenScope(); 1154? SystemColors.ControlLightLight
System\Windows\Forms\Rendering\ControlPaint.HLSColor.cs (2)
158return SystemColors.ControlLightLight; 163ARGB lightLight = SystemColors.ControlLightLight;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
140using (Brush brush = new SolidBrush(SystemColors.ControlLightLight))