13 references to CreateScope
System.Windows.Forms (1)
System\Windows\Forms\Rendering\GdiCache.cs (1)
95return font is null ? new FontCache.Scope() : s_fontCache.GetEntry(font, quality).CreateScope();
System.Windows.Forms.Primitives (2)
System\Windows\Forms\GdiPlus\GdiPlusCache.cs (2)
41return PenCache.GetEntry(color).CreateScope(); 58return BrushCache.GetEntry(color).CreateScope();
System.Windows.Forms.Primitives.Tests (10)
System\Windows\Forms\RefCacheTests.cs (10)
14var firstScope = cache.GetEntry(1).CreateScope(); 17var secondScope = cache.GetEntry(1).CreateScope(); 26using var thirdScope = cache.GetEntry(1).CreateScope(); 37var firstScope = cache.GetEntry(1).CreateScope(); 38var secondScope = cache.GetEntry(2).CreateScope(); 39var thirdScope = cache.GetEntry(3).CreateScope(); 40var fourthScope = cache.GetEntry(4).CreateScope(); 47var fifthScope = cache.GetEntry(5).CreateScope(); 48var sixthScope = cache.GetEntry(5).CreateScope(); 69using var seventhScope = cache.GetEntry(7).CreateScope();