7 instantiations of GraphicsStateScope
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (2)
8296
using GraphicsStateScope saveState =
new
(g);
8327
using GraphicsStateScope saveState =
new
(newArgs.Graphics);
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ButtonDarkModeRendererBase.cs (1)
49
using (new
GraphicsStateScope
(graphics))
System\Windows\Forms\Controls\Labels\LinkLabel.cs (4)
1024
using GraphicsStateScope graphicsScope =
new
(g);
1114
using GraphicsStateScope graphicsScope =
new
(g);
1159
using (GraphicsStateScope backgroundPaintScope =
new
(e.Graphics))
1165
using GraphicsStateScope imagePaintScope =
new
(e.Graphics);
6 references to GraphicsStateScope
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (2)
8296
using
GraphicsStateScope
saveState = new(g);
8327
using
GraphicsStateScope
saveState = new(newArgs.Graphics);
System\Windows\Forms\Controls\Labels\LinkLabel.cs (4)
1024
using
GraphicsStateScope
graphicsScope = new(g);
1114
using
GraphicsStateScope
graphicsScope = new(g);
1159
using (
GraphicsStateScope
backgroundPaintScope = new(e.Graphics))
1165
using
GraphicsStateScope
imagePaintScope = new(e.Graphics);