Rectangle r = Screen.GetWorkingArea(this);
this.Location = new Point(r.Right - this.Width, r.Bottom - this.Height);
这样就可以把窗体定位在Screen的右下角,窗体大小你自己设置吧
如果要设置窗体风格,设置一下FormBorderStyle
this.Location = new Point(r.Right - this.Width, r.Bottom - this.Height);
这样就可以把窗体定位在Screen的右下角,窗体大小你自己设置吧
如果要设置窗体风格,设置一下FormBorderStyle