How do I center a window onscreen in C#?

后端 未结 12 2059
情书的邮戳
情书的邮戳 2020-12-02 09:05

I need a way to center the current window. So for example, if a user pushes a button, I want the window to center itself onscreen. I know you can use the startposition prope

12条回答
  •  我在风中等你
    2020-12-02 09:20

    In Windows Forms:

    this.StartPosition = FormStartPosition.CenterScreen;
    

    In WPF:

    this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
    

    That's all you have to do...

提交回复
热议问题