1 System.Windows.Forms.Screen.GetWorkingArea(this); 2 int width = ScreenArea.Width;//屏幕宽度 3 int height = ScreenArea.Height;//屏幕高度 4 this.Location = new System.Drawing.Point(width - this.Width, height - this.Height);//指定窗体显示在右下角
1 System.Windows.Forms.Screen.GetWorkingArea(this); 2 int width = ScreenArea.Width;//屏幕宽度 3 int height = ScreenArea.Height;//屏幕高度 4 this.Location = new System.Drawing.Point(width - this.Width, height - this.Height);//指定窗体显示在右下角