当前位置: 首页>>代码示例>>C#>>正文


C# TextBox.PointToScreen方法代码示例

本文整理汇总了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();
 }
开发者ID:uwitec,项目名称:carrey-rms,代码行数:25,代码来源:frmDestTableno.cs


注:本文中的System.Windows.Forms.TextBox.PointToScreen方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。