gpt4 book ai didi

c# - 为什么 CenterToScreen 方法会在光标所在的屏幕而不是具有焦点的应用程序的屏幕上使表单居中?

转载 作者:可可西里 更新时间:2023-11-01 03:13:50 37 4
gpt4 key购买 nike

我正在使用 Visual Studio 2010、C# .NET 4、WinForms。我的电脑有 2 个显示器。

当我调用窗体的 CenterToScreen 方法时,窗体会在光标所在的屏幕上居中。有谁知道为什么吗?

最佳答案

来自documentation :

Do not call this directly from your code. Instead, set the StartPosition property to CenterScreen.

The CenterToScreen method uses the following priority list to determine the screen used to center the form:

  1. The Owner property of the form.
  2. The HWND owner of the form.
  3. The screen that currently has the mouse cursor.

因此,在表单的初始显示期间有效地使用了它。它不打算以后使用。

你可以这样写你自己的:

protected void ReallyCenterToScreen()
{
Screen screen = Screen.FromControl(this);

Rectangle workingArea = screen.WorkingArea;
this.Location = new Point() {
X = Math.Max(workingArea.X, workingArea.X + (workingArea.Width - this.Width) / 2),
Y = Math.Max(workingArea.Y, workingArea.Y + (workingArea.Height - this.Height) / 2)
};
}

关于c# - 为什么 CenterToScreen 方法会在光标所在的屏幕而不是具有焦点的应用程序的屏幕上使表单居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6837463/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com