C#设置窗口在右下角显示
int x = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width - this.Width; int y = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height - this.Height; this.SetDesktopLocation(x, y);
int x = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width - this.Width; int y = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height - this.Height; this.SetDesktopLocation(x, y);