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.
我想知道设计全屏表单的最佳方式,例如以一种在用户分辨率不同时不会弄乱的方式定位控件。
这是我的全屏代码:
int w = Screen.PrimaryScreen.Bounds.Width; int h = Screen.PrimaryScreen.Bounds.Height; this.Location = new Point(0, 0); this.Size = new Size(w, h);
锚和码头。
Anchor 将绑定控件。Dock 属性设置它如何扩展/收缩。
因此,如果您将按钮锚分配给“顶部,左侧”,则它的大小和位置将锁定在这些侧面。因此,如果您将窗体窗口拖得更宽,对象将向右和向下扩展。