32 references to FromHdcInternal
System.Drawing (8)
commonui\System\Drawing\Advanced\Font.cs (3)
805Graphics graphics = Graphics.FromHdcInternal(screenDC); 935using (Graphics graphics = Graphics.FromHdcInternal(screenDC)) { 1004using( Graphics graphics = Graphics.FromHdcInternal(screenDC)){
commonui\System\Drawing\BufferedGraphicsContext.cs (1)
404compatGraphics = Graphics.FromHdcInternal(compatDC);
commonui\System\Drawing\Graphics.cs (1)
140return FromHdcInternal(hdc);
commonui\System\Drawing\Printing\DefaultPrintController.cs (1)
118graphics = Graphics.FromHdcInternal( dc.Hdc );
commonui\System\Drawing\Printing\PrinterSettings.cs (1)
745Graphics g = Graphics.FromHdcInternal(dc.Hdc);
commonui\System\Drawing\Printing\PrintPreviewGraphics.cs (1)
50using( Graphics graphics = Graphics.FromHdcInternal(dc.Hdc) ) {
System.Windows.Forms (24)
winforms\Managed\System\WinForms\ComboBox.cs (4)
3456Graphics graphics = Graphics.FromHdcInternal(m.WParam); 3609Graphics g = Graphics.FromHdcInternal(dis.hDC); 3792using (Graphics g = Graphics.FromHdcInternal(dc)) { 3816using (Graphics g = Graphics.FromHdcInternal(m.WParam)) {
winforms\Managed\System\WinForms\ControlPaint.cs (1)
222using( Graphics graphics = Graphics.FromHdcInternal(dc) ) {
winforms\Managed\System\WinForms\FontDialog.cs (1)
560Graphics graphics = Graphics.FromHdcInternal(screenDC);
winforms\Managed\System\WinForms\GroupBox.cs (1)
772using (Graphics graphics = Graphics.FromHdcInternal(m.WParam)) {
winforms\Managed\System\WinForms\Label.cs (1)
1623using(Graphics g = Graphics.FromHdcInternal(hDC.Handle)) {
winforms\Managed\System\WinForms\ListBox.cs (1)
2326Graphics g = Graphics.FromHdcInternal(dc);
winforms\Managed\System\WinForms\ListView.cs (3)
2546Graphics g = Graphics.FromHdcInternal(nmcd->nmcd.hdc); 2627Graphics g = Graphics.FromHdcInternal(nmcd->nmcd.hdc); 5472Graphics g = Graphics.FromHdcInternal(nmcd->hdc);
winforms\Managed\System\WinForms\MenuItem.cs (2)
1496Graphics g = Graphics.FromHdcInternal(dis.hDC); 1526Graphics graphics = Graphics.FromHdcInternal(screendc);
winforms\Managed\System\WinForms\PaintEvent.cs (1)
134graphics = Graphics.FromHdcInternal(dc);
winforms\Managed\System\WinForms\Panel.cs (1)
295using(Graphics g = Graphics.FromHdcInternal(hDC.Handle)) {
winforms\Managed\System\WinForms\StatusBar.cs (1)
1038Graphics g = Graphics.FromHdcInternal(dis.hDC);
winforms\Managed\System\WinForms\TabControl.cs (1)
2057using (Graphics g = Graphics.FromHdcInternal(dis.hDC)) {
winforms\Managed\System\WinForms\ToolStrip.cs (2)
3676Graphics itemGraphics = Graphics.FromHdcInternal(itemHDC.Handle); 3718itemGraphics = Graphics.FromHdcInternal(itemHDC.Handle);
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
867using (Graphics g = Graphics.FromHdcInternal(hdc.Handle)) {
winforms\Managed\System\WinForms\ToolTip.cs (1)
2600Graphics g = Graphics.FromHdcInternal(dc);
winforms\Managed\System\WinForms\TreeView.cs (2)
2722Graphics g = Graphics.FromHdcInternal(nmcd.nmcd.hdc); 2820Graphics g = Graphics.FromHdcInternal(nmcd.nmcd.hdc);