怎样使winform中button位于底部解决方法
展开全部
------解决方案--------------------
觉得使用Anchor合适,我的代码如下:
Button btn = new Button();
btn.Text = "测试按钮 ";
btn.Location = new Point(this.ClientRectangle.Width - btn.Width, this.ClientRectangle.Height - btn.Height);
btn.Anchor = AnchorStyles.Bottom| AnchorStyles.Right;
this.Controls.Add(btn);
觉得使用Anchor合适,我的代码如下:
Button btn = new Button();
btn.Text = "测试按钮 ";
btn.Location = new Point(this.ClientRectangle.Width - btn.Width, this.ClientRectangle.Height - btn.Height);
btn.Anchor = AnchorStyles.Bottom| AnchorStyles.Right;
this.Controls.Add(btn);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询