WinForm 弹窗

时间:2023-11-28 21:09:20
private void FrmMyShow_Load(object sender, EventArgs e)
{
Rectangle r = Screen.GetWorkingArea(this); //this.Location = new Point(r.Right - this.Width, r.Bottom - this.Height); //右下 //this.Location = new Point(0, r.Bottom - this.Height); //左下 //this.Location = new Point(0, 0); //左上 this.Location = new Point(r.Right - this.Width, ); //右上
}