c# tooptip窗体居中显示
时间: 2023-12-13 13:33:21 浏览: 89
C#设置子窗体在主窗体中居中显示解决方案
5星 · 资源好评率100%
在C#中,要让ToolTip窗体居中显示,可以使用以下代码:
```csharp
// 获取屏幕的宽度和高度
int screenWidth = Screen.PrimaryScreen.WorkingArea.Width;
int screenHeight = Screen.PrimaryScreen.WorkingArea.Height;
// 计算ToolTip窗体的位置
int x = (screenWidth - toolTipForm.Width) / 2;
int y = (screenHeight - toolTipForm.Height) / 2;
// 设置ToolTip窗体的位置
toolTipForm.StartPosition = FormStartPosition.Manual;
toolTipForm.Location = new Point(x, y);
```
其中,`toolTipForm`是你的ToolTip窗体对象。这段代码会将ToolTip窗体居中显示在屏幕上。
阅读全文