C#中如何设置窗体的StartPosition属性设置为右下角
展开全部
C#中如何设置窗体的StartPosition属性设置为右下角 ,实话告诉你,用startpostion这个属性是不能够做到这一点的,不过我可以写其他的代码为你实现一下你说的那个功能
在formload事件里写上
int a = Screen.PrimaryScreen.Bounds.Height;
int b =Screen.PrimaryScreen.Bounds.Width;
this.Location = new Point(0,a-this.Height-20);
在formload事件里写上
int a = Screen.PrimaryScreen.Bounds.Height;
int b =Screen.PrimaryScreen.Bounds.Width;
this.Location = new Point(0,a-this.Height-20);
展开全部
startpostion属性不能实现你这功能,要在代码里写,
在构造函数里加下面两句即可:
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(SystemInformation.WorkingArea.Width - this.Width, SystemInformation.WorkingArea.Height - this.Height);
在构造函数里加下面两句即可:
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(SystemInformation.WorkingArea.Width - this.Width, SystemInformation.WorkingArea.Height - this.Height);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询