1 instantiation of SolidBrushCache
System.Windows.Forms.Primitives (1)
System\Windows\Forms\GdiPlus\GdiPlusCache.cs (1)
25
private static SolidBrushCache BrushCache => s_brushCache ??=
new
(softLimit: 30, hardLimit: 40);
5 references to SolidBrushCache
System.Windows.Forms.Primitives (5)
System\Windows\Forms\GdiPlus\GdiPlusCache.cs (5)
19
private static
SolidBrushCache
? s_brushCache;
25
private static
SolidBrushCache
BrushCache => s_brushCache ??= new(softLimit: 30, hardLimit: 40);
44
private static
SolidBrushCache
.Scope GetSolidBrushScope(Color color)
54
return new
SolidBrushCache
.Scope(solidBrush);
80
internal static
SolidBrushCache
.Scope GetCachedSolidBrushScope(this Color color) => GetSolidBrushScope(color);