36 references to PointToScreen
System.Windows.Forms (30)
winforms\Managed\System\WinForms\Button.cs (1)
305Point pt = PointToScreen(new Point(mevent.X, mevent.Y));
winforms\Managed\System\WinForms\CheckBox.cs (1)
647Point pt = PointToScreen(new Point(mevent.X, mevent.Y));
winforms\Managed\System\WinForms\ComboBox.cs (2)
1845pt = PointToScreen(pt); 3730pt = PointToScreen(pt);
winforms\Managed\System\WinForms\ContextMenu.cs (1)
230pos = control.PointToScreen(pos);
winforms\Managed\System\WinForms\Control.cs (2)
10381Point clientOffset = PointToScreen(Point.Empty); 13490pt = PointToScreen(pt);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
19347Point pt = PointToScreen(Location);
winforms\Managed\System\WinForms\ListBox.cs (2)
2415pt = PointToScreen(pt); 2462rpt = PointToScreen(rpt);
winforms\Managed\System\WinForms\PropertyGridInternal\GridToolTip.cs (1)
185Point locPoint = parent.PointToScreen(new Point(rect.left, rect.top));
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (8)
557Point pt = PointToScreen( new Point( rect.X, rect.Y ) ); 1638Point loc = PointToScreen(new Point(0, 0)); 1713Point loc = PointToScreen(new Point(0, 0)); 2811Point screenPoint = Edit.PointToScreen(new Point(me.X, me.Y)); 3641Point editPoint = PointToScreen(lastMouseDown); 3649rowSelectPos = PointToScreen(lastMouseDown); 5792dragStart = PointToScreen(new Point(e.X, e.Y)); 5831Point dragPoint = PointToScreen(new Point(e.X, e.Y));
winforms\Managed\System\WinForms\RadioButton.cs (1)
573Point pt = PointToScreen(new Point(mevent.X, mevent.Y));
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
1684Point pt = PointToScreen(mevent.Location);
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
2050this.displayLocation = control.PointToScreen(position); 2061this.displayLocation = CalculateDropDownLocation(control.PointToScreen(position), direction).Location;
winforms\Managed\System\WinForms\ToolStripItem.cs (2)
3884toPoint = parent.PointToScreen(fromPoint); 4406return new Rectangle(Owner.ParentInternal.PointToScreen(bounds.Location), bounds.Size);
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
1143Point cursorLoc = toolStripToDrag.PointToScreen(toolStripToDrag.GripRectangle.Location);
winforms\Managed\System\WinForms\TreeView.cs (1)
2918bounds.Location = this.PointToScreen(bounds.Location);
winforms\Managed\System\WinForms\UpDownBase.cs (3)
965Point pt = PointToScreen(new Point(mevent.X, mevent.Y)); 1307pt = PointToScreen(pt); 1653pt = PointToScreen(pt);
System.Workflow.Activities (2)
Rules\Design\Dialogs\IntellisenseTextBox.cs (2)
434Point parentScreenLocation = TopLevelControl.PointToScreen(new Point(0, 0)); 435Point locationInDialog = PointToScreen(clientPoint);
System.Workflow.ComponentModel (4)
AuthoringOM\Design\DesignerWidgets.cs (2)
1772TabChange(this, new TabSelectionChangeEventArgs(previousTab, currentTab, new Rectangle(PointToScreen(tabItemBounds.Location), tabItemBounds.Size))); 2261Point screenCoOrd = this.parentControl.PointToScreen(new Point(this.inplaceTipRectangle.Left, this.inplaceTipRectangle.Top));
AuthoringOM\Design\WorkflowView.cs (2)
2032return PointToScreen(LogicalPointToClient(logicalPoint)); 2263return new Rectangle(this.workflowView.PointToScreen(Point.Empty), this.workflowView.ViewPortSize);