11 references to hDC
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ComboBox.cs (3)
3607
IntPtr oldPal = SetUpPalette(dis.
hDC
, false /*force*/, false /*realize*/);
3609
Graphics g = Graphics.FromHdcInternal(dis.
hDC
);
3621
SafeNativeMethods.SelectPalette(new HandleRef(this, dis.
hDC
), new HandleRef(null, oldPal), 0);
winforms\Managed\System\WinForms\ListBox.cs (1)
2323
IntPtr dc = dis.
hDC
;
winforms\Managed\System\WinForms\MenuItem.cs (3)
1494
IntPtr oldPal = Control.SetUpPalette(dis.
hDC
, false /*force*/, false);
1496
Graphics g = Graphics.FromHdcInternal(dis.
hDC
);
1506
SafeNativeMethods.SelectPalette(new HandleRef(null, dis.
hDC
), new HandleRef(null, oldPal), 0);
winforms\Managed\System\WinForms\StatusBar.cs (1)
1038
Graphics g = Graphics.FromHdcInternal(dis.
hDC
);
winforms\Managed\System\WinForms\TabControl.cs (3)
2056
IntPtr oldPal = SetUpPalette(dis.
hDC
, false /*force*/, false /*realize*/);
2057
using (Graphics g = Graphics.FromHdcInternal(dis.
hDC
)) {
2061
SafeNativeMethods.SelectPalette(new HandleRef(null, dis.
hDC
), new HandleRef(null, oldPal), 0);