9 references to FromHdcInternal
System.Windows.Forms (6)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
4004using Graphics targetGraphics = Graphics.FromHdcInternal((IntPtr)dc); 4054using Graphics g = Graphics.FromHdcInternal((IntPtr)dc); 4130using Graphics g = Graphics.FromHdcInternal((HDC)m.WParamInternal);
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
725using Graphics graphics = Graphics.FromHdcInternal((HDC)m.WParamInternal);
System\Windows\Forms\Dialogs\CommonDialogs\FontDialog.cs (1)
383using Graphics graphics = Graphics.FromHdcInternal(dc);
System\Windows\Forms\Rendering\DrawingEventArgs.cs (1)
110_graphics = Graphics.FromHdcInternal((IntPtr)_hdc);
System.Windows.Forms.Primitives (3)
System\Windows\Forms\DeviceContextExtensions.cs (3)
123internal static Graphics CreateGraphics(this HDC hdc) => Graphics.FromHdcInternal(hdc); 124internal static Graphics CreateGraphics(this CreateDcScope hdc) => Graphics.FromHdcInternal(hdc.HDC); 125internal static Graphics CreateGraphics(this GetDcScope hdc) => Graphics.FromHdcInternal(hdc.HDC);