本文整理汇总了C#中System.Windows.Forms.TextBox.PointToScreen方法的典型用法代码示例。如果您正苦于以下问题:C# TextBox.PointToScreen方法的具体用法?C# TextBox.PointToScreen怎么用?C# TextBox.PointToScreen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.TextBox
的用法示例。
在下文中一共展示了TextBox.PointToScreen方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShowInputPanel
private void ShowInputPanel(TextBox TargetControl)
{
Point controlLocation=Point.Empty;
Point inputPanelLocation=Point.Empty;
controlLocation = TargetControl.PointToScreen(controlLocation);
Rectangle ScreenWorkArea = Screen.FromPoint(controlLocation).WorkingArea;
//If Not frminptForm.Visible Then
frminptForm.CurrentUsedControl = TargetControl;
inputPanelLocation.X = controlLocation.X;
inputPanelLocation.Y = controlLocation.Y + 30;
if (controlLocation.X + frminptForm.Width > ScreenWorkArea.Width) //右边界超出屏幕
{
inputPanelLocation.X = ScreenWorkArea.Width - frminptForm.Width;
}
if (controlLocation.Y + TargetControl.Height + frminptForm.Height + 30 > ScreenWorkArea.Height) //下边界超出屏幕
{
inputPanelLocation.Y = controlLocation.Y - 30 - frminptForm.Height;
}
if (controlLocation.X < 0) //左边界超出屏幕
{
inputPanelLocation.X = 0;
}
frminptForm.SetBounds(inputPanelLocation.X, inputPanelLocation.Y, 592, 264);
frminptForm.Show();
}