如何在更改包含图片框的控件的大小时防止更改图片框的大小?
我有一个带有图片框的用户控件。我希望图片框大小保持不变,但包含用户控件的表单会更改控件的高度,并且图片框的高度会发生变化。我可以以某种方式保持高度(和宽度)恒定吗?
I have a user control with picturebox on it. I want the picturebox size to remain the same, but the form that contains the user control changes the hight of the control and the picturebox's height changes. Can I somehow keep the height (and width) constant?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果图片框已停靠或设置了锚点,它将“遵循”父级的高度(如果配置了正确的锚点/停靠,则还包括宽度)。
请检查
Dock
和Anchor
属性设置是否正确。 另请参阅本教程< /a>.If the picture box is docked or has anchors set, it "follows" the parent's height (and width, if the correct anchor/docking is configured).
Please check whether you set the
Dock
andAnchor
properties correctly. See also this tutorial.