实现在屏幕左下角显示窗口

2019-04-14 18:53发布

 在   Form1_Load   事件中添加     
          Rectangle E = Screen.PrimaryScreen.Bounds;
            Point p = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);
            this.Location = p;