我想在调用它的同一个窗口中显示一个新表单。我知道一种通过类似于以下代码在 PrimaryScreen 或 Virtual Screen 上显示此表单的方法:
MyForm.Location = Screen.PrimaryScreen.Bounds.Location;
但我想在当前屏幕上显示它。有没有办法找出并在当前屏幕上显示它?
我想在调用它的同一个窗口中显示一个新表单。我知道一种通过类似于以下代码在 PrimaryScreen 或 Virtual Screen 上显示此表单的方法:
MyForm.Location = Screen.PrimaryScreen.Bounds.Location;
但我想在当前屏幕上显示它。有没有办法找出并在当前屏幕上显示它?
我做了这样的事情来显示我的表单以当前屏幕为中心:
var screen = Screen.FromPoint(Cursor.Position);
myForm.StartPosition = FormStartPosition.Manual;
myForm.Left = screen.Bounds.Left + screen.Bounds.Width / 2 - myForm.Width / 2;
myForm.Top = screen.Bounds.Top + screen.Bounds.Height / 2 - myForm.Height / 2;
您可以使用相同的技术,但不要使用 PrimaryScreen,而是使用Screen.FromPoint和Cursor.Position抓取屏幕:
Screen screen = Screen.FromPoint(Cursor.Position);
MyForm.Location = screen.Bounds.Location;
It sounds like you aren't setting the StartPosition to Manual.
我知道这已经晚了,但仍然发布我的答案,希望它可以帮助其他人。经过几次尝试,我用 3 台显示器完成了这项工作
var currentScreen = Screen.FromControl(this);
if (!currentScreen.Primary)
{
var hCenter = currentScreen.Bounds.Left + (((currentScreen.Bounds.Right - currentScreen.Bounds.Left) / 2) - ((Width) / 2));
var vCenter = (currentScreen.Bounds.Bottom / 2) - ((Height) / 2);
StartPosition = FormStartPosition.Manual;
Location = new Point(hCenter, vCenter);
}
else
{
CenterToScreen();
}
这应该会在活动屏幕上打开表单。有关 StartPosition 的更多值,请参阅 此内容。
如果您已经有一个父窗体并想在同一屏幕上打开一个新窗体,请为 ShowDialog 方法提供对父窗体的引用:newForm.ShowDialog(this);
如果没有所有者参数 (" this
"),即使您的父窗体也可以在主屏幕上打开新窗体表格在另一个屏幕上。