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