可能重复:
What's the best way to design a full screen application in C#?
您可能知道全屏窗体不适合IDE。所以,我只是想知道如何在该表单上定位控件。
这样的事情:
picturebox1.Location = Screen.PrimaryScreen.Bounds.Width - 50(margin).
答案 0 :(得分:3)
将相框放在相对于上边框和左边框的正确位置,然后确保您拥有
picturebox1.Anchor = AnchorStyles.Top | AnchorStyles.Right;
答案 1 :(得分:0)
使用yhour子控件的Anchor / Dock属性,在设计器中,使用鼠标拉伸/缩小表单的大小,并确保所有内容都保持在您想要的位置!