3 overrides of CreateEntry
System.Windows.Forms (1)
System\Windows\Forms\Rendering\FontCache.cs (1)
46protected override CacheEntry CreateEntry((Font Font, FONT_QUALITY Quality) key, bool cached)
System.Windows.Forms.Primitives (2)
System\Windows\Forms\GdiPlus\PenCache.cs (1)
12protected override CacheEntry CreateEntry(Color key, bool cached) => new PenCacheEntry(key, cached);
System\Windows\Forms\GdiPlus\SolidBrushCache.cs (1)
12protected override CacheEntry CreateEntry(Color key, bool cached) => new SolidBrushCacheEntry(key, cached);
2 references to CreateEntry
System.Windows.Forms.Primitives (2)
System\Windows\Forms\RefCountedCache.cs (2)
128entry = CreateEntry(key, cached: true); 133entry = CreateEntry(key, cached: false);