编程语言
首页 > 编程语言> > C# 桌面右下角显示窗体

C# 桌面右下角显示窗体

作者:互联网

 

        public Form1()
        {
            InitializeComponent();
            //桌面窗口区宽减自身宽,高减自身高
            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;  
            Point p = new Point(x, y);
            this.PointToScreen(p);  //区域坐标变换成屏幕坐标表示
            this.Location = p;      //设置窗体位置
        }

 

标签:WorkingArea,Width,右下角,C#,System,Forms,int,窗体,Size
来源: https://www.cnblogs.com/52vsto/p/12259231.html