static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainScreen());
}
这是我创建和运行主屏幕的主要内容,我尝试过使用:
这些都不起作用,它只是一直显示在屏幕的左上角。 关于如何集中形式的任何想法?
答案 0 :(得分:0)
this.Location = new Point((Screen.PrimaryScreen.WorkingArea.Width - this.Width) / 2,
(Screen.PrimaryScreen.WorkingArea.Height - this.Height) / 2);