Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表单“Form1”上有一个按钮,当用户单击此按钮时,会弹出另一个表单“Form2”。如何调整 Form2 的位置,使其在弹出时位于 Form1 的中心?我尝试调整位置属性,但它不起作用。
谢谢您的帮助。
您需要设置 to 的属性StartPosition并使用Form2CenterParent
StartPosition
Form2
CenterParent
Form2 form2 = new Form2(); form2.ShowDialog();
如果您不想将表单显示为对话框,请遵循此问题的确认答案:
如何使用代码设置 Windows 窗体窗体的 StartPosition?