您的位置:首页 > 编程语言 > C#

C#设置窗口在右下角显示

2015-01-20 14:35 260 查看
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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: