答案 0 :(得分:0)
您可以使用Control.Anchor
和Control.Dock
属性来管理每个控制位置。
当放置在Visual Studio中的窗体上时,控件的默认锚点设置是" Top,Left"。你还应该为你的其他右侧控件设置锚点。例如:为Bottom
和Right
PictureBox1.Anchor = (AnchorStyles.Bottom | AnchorStyles.Right);
有关如何使用Anchor和Dock属性管理WinForm控件的更多信息,请查看:http://www.techrepublic.com/article/manage-winform-controls-using-the-anchor-and-dock-properties/