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

    技术2022-05-12  21

    假设窗体的大小为200×120,在显示起的右下角打开。 int x= System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Width - 200; int y=System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Size.Height - 125; this.SetDesktopLocation(x,y);

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


    最新回复(0)