最佳答案
我创建一个新表单,并从父表单调用如下:
loginForm = new SubLogin();
loginForm.Show();
我需要将子窗体显示在父窗体的中心。因此,在子窗体加载中,我执行以下操作:’
Point p = new Point(this.ParentForm.Width / 2 - this.Width / 2, this.ParentForm.Height / 2 - this.Height / 2);
this.Location = p;
但这是抛出错误,因为父窗体为 null。我也尝试设置 Parent 属性,但没有帮助。有什么建议吗?