我想在中心屏幕中显示我的 WinApp,所以我将StartPosition
属性设置为CenterScreen
但窗口不显示在屏幕中心。
它出什么问题了 ?我错过了什么吗?
PS:
我从主窗口和按钮显示窗口。
编辑:
我用来显示窗口的代码。
Form_CO form_CO = new Form_CO();
void button_CO_Click(object sender, EventArgs e)
{
try
{
//StaticVariables.Form_CO_IsShown is to prevent opening the same multiple windows
if (!StaticVariables.Form_CO_IsShown)
{
form_CO = new Form_CO();
form_CO.Show();
StaticVariables.Form_CO_IsShown = true;
}
else
{
form_CO.WindowState = FormWindowState.Normal;
form_CO.Activate();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Exception", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}