我正在尝试在我的表单上放置一个按钮,以便它位于我表单的右下角。按钮是150乘100,所以我有
button1.Location = new Point(this.Width - 150, this.Height - 100);
经过一些测试后,我发现这个距离太近了大约15个像素,而且距离太远了大约45个像素。我相信(虽然我不确定)这是因为this.Width
和this.Height
包含表单的边框,其中表单名称和最小化/最大化/关闭按钮去了。
有没有办法只测量表单内部,以便我可以使用button1.Location = new Point(insideWidth - 150, insideHeight - 100);
之类的内容?
提前谢谢!