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)
48
using (new
GraphicsStateScope
(graphics))
System\Windows\Forms\Controls\Labels\LinkLabel.cs (4)
1023
using GraphicsStateScope graphicsScope =
new
(g);
1113
using GraphicsStateScope graphicsScope =
new
(g);
1158
using (GraphicsStateScope backgroundPaintScope =
new
(e.Graphics))
1164
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)
1023
using
GraphicsStateScope
graphicsScope = new(g);
1113
using
GraphicsStateScope
graphicsScope = new(g);
1158
using (
GraphicsStateScope
backgroundPaintScope = new(e.Graphics))
1164
using
GraphicsStateScope
imagePaintScope = new(e.Graphics);