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