4 instantiations of WindowsGraphics
System.Drawing (4)
misc\GDI\WindowsGraphics.cs (4)
83
WindowsGraphics wg = new
WindowsGraphics
(dc);
99
WindowsGraphics wg = new
WindowsGraphics
(dc);
109
WindowsGraphics wg = new
WindowsGraphics
( dc );
123
WindowsGraphics wg = new
WindowsGraphics
( dc );
17 references to WindowsGraphics
System.Drawing (17)
commonui\System\Drawing\Icon.cs (4)
510
WindowsGraphics
wg =
WindowsGraphics
.FromGraphics(graphics, ApplyGraphicsProperties.Clipping);
535
WindowsGraphics
wg =
WindowsGraphics
.FromGraphics(graphics, ApplyGraphicsProperties.Clipping);
misc\GDI\WindowsGraphics.cs (13)
80
public static
WindowsGraphics
CreateMeasurementWindowsGraphics()
83
WindowsGraphics
wg = new WindowsGraphics(dc);
96
public static
WindowsGraphics
CreateMeasurementWindowsGraphics(IntPtr screenDC)
99
WindowsGraphics
wg = new WindowsGraphics(dc);
106
public static
WindowsGraphics
FromHwnd(IntPtr hWnd)
109
WindowsGraphics
wg = new WindowsGraphics( dc );
118
public static
WindowsGraphics
FromHdc(IntPtr hDc)
123
WindowsGraphics
wg = new WindowsGraphics( dc );
154
public static
WindowsGraphics
FromGraphics(Graphics g)
157
return
WindowsGraphics
.FromGraphics(g, properties);
162
public static
WindowsGraphics
FromGraphics(Graphics g, ApplyGraphicsProperties properties)
210
WindowsGraphics
wg =
WindowsGraphics
.FromHdc( g.GetHdc() ); // This locks the Graphics object.