4 instantiations of WindowsGraphics
System.Windows.Forms (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 );
22 references to WindowsGraphics
System.Windows.Forms (22)
misc\GDI\MeasurementDCInfo.cs (3)
36WindowsGraphics sharedGraphics = WindowsGraphicsCacheManager.GetCurrentMeasurementGraphics(); 63internal static IntNativeMethods.DRAWTEXTPARAMS GetTextMargins(WindowsGraphics wg, WindowsFont font) { 88WindowsGraphics sharedGraphics = WindowsGraphicsCacheManager.GetCurrentMeasurementGraphics();
misc\GDI\WindowsFont.cs (2)
467WindowsGraphics wg = WindowsGraphicsCacheManager.MeasurementGraphics; 526WindowsGraphics wg = WindowsGraphicsCacheManager.MeasurementGraphics;
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.
misc\GDI\WindowsGraphicsCacheManager.cs (4)
46private static WindowsGraphics measurementGraphics; 99public static WindowsGraphics MeasurementGraphics 112measurementGraphics = WindowsGraphics.CreateMeasurementWindowsGraphics(); 121internal static WindowsGraphics GetCurrentMeasurementGraphics()