Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在不移动任何锚定控件的情况下在设计器中调整表单的大小?我在 Visual Studio 2010 中使用 winforms。
你必须知道什么时候可以作弊。打开表单的 Designer.cs 文件并编辑 this.ClientSize 属性分配。这会更改表单大小,但不会影响锚定在右侧或底部的控件的位置。
您可以试试这个...保持所有控件为默认值(即顶部、左侧),就像您在设计视图中一样,然后将它们锚定在 form_load / activate 事件中的代码中。