我正在开发一个项目,我正在使用下面的代码创建一个按钮打开的弹出窗口。我希望弹出窗体位于主窗体的中心。有没有解决方案?
private void button1_Click(object sender, EventArgs e)
{
Interclasare popup= new Interclasare();
DialogResult dialogresult = popup.ShowDialog();
if (dialogresult == DialogResult.Cancel)
{
popup.Dispose();
}
}
答案 0 :(得分:1)
如果popup
是表单,则是:
popup.StartPosition = FormStartPosition.CenterParent;