在调整大小时保持控件的长宽比

发布于 2024-07-16 08:53:01 字数 55 浏览 7 评论 0原文

我有一个面板控件,里面有一个图片框。 调整面板控件所在窗体的大小时,如何保持面板控件的纵横比?

I have a panel control with a picture box in it. How can I maintain the aspect ratio of the panel control when Resizing the form it's on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倒带 2024-07-23 08:53:01

您需要以某种方式存储纵横比,无论它是您在设计时已知的东西,还是您只想在 InitializeComponent() 之后在表单的构造函数中计算它。 在表单的 Resize 事件中,您只需将 Panel 的大小设置为适合表单 ClientRectangle 的纵横比的最大矩形。

You'll need to store off the aspect ratio somehow, whether it's something known to you at design time or if you just want to calculate it in the constructor of the form after InitializeComponent(). In your form's Resize event, you'll just need to set the size of the Panel to be the largest rectangle at that aspect ratio that fits within the ClientRectangle of the form.

你好,陌生人 2024-07-23 08:53:01

使用锚点 属性,或将控件放入 DockContainer 中并使用 适当地停靠属性。

编辑:实际上这不是你问的,是吗? 我的建议是在容器的调整大小事件上手动执行此操作。 您需要计算 x 或 y 并在加载图片时应用图片的纵横比。

Use the Anchor property, or put the control in a DockContainer and use the Dock property appropriately.

Edit: Actually that's not what you asked, is it? My recommendation would be to do this manually on the resize event of the container. You'd need to calculate the x or y and apply the aspect ratio of the picture when it was loaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文