黄聪:C#设置窗体打开位置(在显示器的右下角打开)

            int x = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width - this.Size.Width - ;
int y = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height - this.Size.Height - ;
this.SetDesktopLocation(x, y);

注释:
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width;   //当前显示器的宽度
System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height; //当前显示器的高度
this.SetDesktopLocation(x,y); //设置窗体打开后在显示器上的坐标

上一篇:在visual studio中设置点击左边选项卡中的类文件,右侧解决方案跳到对应的文件


下一篇:Python实例----------每日一贴