How do I center a window onscreen in C#?

后端 未结 12 2035
情书的邮戳
情书的邮戳 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条回答
  •  -上瘾入骨i
    2020-12-02 09:21

    Use Location property of the form. Set it to the desired top left point

    desired x = (desktop_width - form_witdh)/2

    desired y = (desktop_height - from_height)/2

提交回复
热议问题