9 references to FromHdcInternal
System.Windows.Forms (6)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
4004
using Graphics targetGraphics = Graphics.
FromHdcInternal
((IntPtr)dc);
4054
using Graphics g = Graphics.
FromHdcInternal
((IntPtr)dc);
4130
using Graphics g = Graphics.
FromHdcInternal
((HDC)m.WParamInternal);
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
725
using Graphics graphics = Graphics.
FromHdcInternal
((HDC)m.WParamInternal);
System\Windows\Forms\Dialogs\CommonDialogs\FontDialog.cs (1)
383
using 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)
123
internal static Graphics CreateGraphics(this HDC hdc) => Graphics.
FromHdcInternal
(hdc);
124
internal static Graphics CreateGraphics(this CreateDcScope hdc) => Graphics.
FromHdcInternal
(hdc.HDC);
125
internal static Graphics CreateGraphics(this GetDcScope hdc) => Graphics.
FromHdcInternal
(hdc.HDC);