简体   繁体   English

如何将 windows.form 的开始位置设置为底部?

[英]How to set windows.form's start position to bottom?

Is there any way to make "StartPosition" Starts to "Bottom"有没有办法让“StartPosition”开始到“底部”

在此处输入图片说明

在此处输入图片说明

Use location property.使用位置属性。

this.Location = new Point((Screen.PrimaryScreen.WorkingArea.Width - this.Width) / 2,
                          (Screen.PrimaryScreen.WorkingArea.Height - this.Height));

public Form1()
{
    InitializeComponent();
    this.StartPosition = FormStartPosition.Manual;
    this.Location = ...;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM