启动窗体时右下角显示
输入下面这行代码即可实现
private void Form_Load(object sender,EventArgs e)
{
this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);
}
输入下面这行代码即可实现
private void Form_Load(object sender,EventArgs e)
{
this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);
}