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