97 references to CacheSlot
PresentationFramework (97)
src\Framework\System\Windows\SystemColors.cs (97)
23
return GetSystemColor(
CacheSlot
.ActiveBorder);
34
return GetSystemColor(
CacheSlot
.ActiveCaption);
45
return GetSystemColor(
CacheSlot
.ActiveCaptionText);
56
return GetSystemColor(
CacheSlot
.AppWorkspace);
67
return GetSystemColor(
CacheSlot
.Control);
78
return GetSystemColor(
CacheSlot
.ControlDark);
89
return GetSystemColor(
CacheSlot
.ControlDarkDark);
100
return GetSystemColor(
CacheSlot
.ControlLight);
111
return GetSystemColor(
CacheSlot
.ControlLightLight);
122
return GetSystemColor(
CacheSlot
.ControlText);
133
return GetSystemColor(
CacheSlot
.Desktop);
144
return GetSystemColor(
CacheSlot
.GradientActiveCaption);
155
return GetSystemColor(
CacheSlot
.GradientInactiveCaption);
166
return GetSystemColor(
CacheSlot
.GrayText);
177
return GetSystemColor(
CacheSlot
.Highlight);
188
return GetSystemColor(
CacheSlot
.HighlightText);
199
return GetSystemColor(
CacheSlot
.HotTrack);
210
return GetSystemColor(
CacheSlot
.InactiveBorder);
221
return GetSystemColor(
CacheSlot
.InactiveCaption);
232
return GetSystemColor(
CacheSlot
.InactiveCaptionText);
243
return GetSystemColor(
CacheSlot
.Info);
254
return GetSystemColor(
CacheSlot
.InfoText);
265
return GetSystemColor(
CacheSlot
.Menu);
276
return GetSystemColor(
CacheSlot
.MenuBar);
287
return GetSystemColor(
CacheSlot
.MenuHighlight);
298
return GetSystemColor(
CacheSlot
.MenuText);
309
return GetSystemColor(
CacheSlot
.ScrollBar);
320
return GetSystemColor(
CacheSlot
.Window);
331
return GetSystemColor(
CacheSlot
.WindowFrame);
342
return GetSystemColor(
CacheSlot
.WindowText);
847
return MakeBrush(
CacheSlot
.ActiveBorder);
858
return MakeBrush(
CacheSlot
.ActiveCaption);
869
return MakeBrush(
CacheSlot
.ActiveCaptionText);
880
return MakeBrush(
CacheSlot
.AppWorkspace);
891
return MakeBrush(
CacheSlot
.Control);
902
return MakeBrush(
CacheSlot
.ControlDark);
913
return MakeBrush(
CacheSlot
.ControlDarkDark);
924
return MakeBrush(
CacheSlot
.ControlLight);
935
return MakeBrush(
CacheSlot
.ControlLightLight);
946
return MakeBrush(
CacheSlot
.ControlText);
957
return MakeBrush(
CacheSlot
.Desktop);
968
return MakeBrush(
CacheSlot
.GradientActiveCaption);
979
return MakeBrush(
CacheSlot
.GradientInactiveCaption);
990
return MakeBrush(
CacheSlot
.GrayText);
1001
return MakeBrush(
CacheSlot
.Highlight);
1012
return MakeBrush(
CacheSlot
.HighlightText);
1023
return MakeBrush(
CacheSlot
.HotTrack);
1034
return MakeBrush(
CacheSlot
.InactiveBorder);
1045
return MakeBrush(
CacheSlot
.InactiveCaption);
1056
return MakeBrush(
CacheSlot
.InactiveCaptionText);
1067
return MakeBrush(
CacheSlot
.Info);
1078
return MakeBrush(
CacheSlot
.InfoText);
1089
return MakeBrush(
CacheSlot
.Menu);
1100
return MakeBrush(
CacheSlot
.MenuBar);
1111
return MakeBrush(
CacheSlot
.MenuHighlight);
1122
return MakeBrush(
CacheSlot
.MenuText);
1133
return MakeBrush(
CacheSlot
.ScrollBar);
1144
return MakeBrush(
CacheSlot
.Window);
1155
return MakeBrush(
CacheSlot
.WindowFrame);
1166
return MakeBrush(
CacheSlot
.WindowText);
1781
private static Color GetSystemColor(
CacheSlot
slot)
1807
private static SolidColorBrush MakeBrush(
CacheSlot
slot)
1830
private static int SlotToFlag(
CacheSlot
slot)
1836
case
CacheSlot
.ActiveBorder:
1838
case
CacheSlot
.ActiveCaption:
1840
case
CacheSlot
.ActiveCaptionText:
1842
case
CacheSlot
.AppWorkspace:
1844
case
CacheSlot
.Control:
1846
case
CacheSlot
.ControlDark:
1848
case
CacheSlot
.ControlDarkDark:
1850
case
CacheSlot
.ControlLight:
1852
case
CacheSlot
.ControlLightLight:
1854
case
CacheSlot
.ControlText:
1856
case
CacheSlot
.Desktop:
1858
case
CacheSlot
.GradientActiveCaption:
1860
case
CacheSlot
.GradientInactiveCaption:
1862
case
CacheSlot
.GrayText:
1864
case
CacheSlot
.Highlight:
1866
case
CacheSlot
.HighlightText:
1868
case
CacheSlot
.HotTrack:
1870
case
CacheSlot
.InactiveBorder:
1872
case
CacheSlot
.InactiveCaption:
1874
case
CacheSlot
.InactiveCaptionText:
1876
case
CacheSlot
.Info:
1878
case
CacheSlot
.InfoText:
1880
case
CacheSlot
.Menu:
1882
case
CacheSlot
.MenuBar:
1884
case
CacheSlot
.MenuHighlight:
1886
case
CacheSlot
.MenuText:
1888
case
CacheSlot
.ScrollBar:
1890
case
CacheSlot
.Window:
1892
case
CacheSlot
.WindowFrame:
1894
case
CacheSlot
.WindowText:
1937
private static BitArray _colorCacheValid = new BitArray((int)
CacheSlot
.NumSlots);
1938
private static Color[] _colorCache = new Color[(int)
CacheSlot
.NumSlots];
1939
private static BitArray _brushCacheValid = new BitArray((int)
CacheSlot
.NumSlots);
1940
private static SolidColorBrush[] _brushCache = new SolidColorBrush[(int)
CacheSlot
.NumSlots];