在 .NET 中缩放矩形

发布于 2024-09-05 16:04:09 字数 90 浏览 5 评论 0原文

在 WinForm 中,我使用 Microsoft.VisualBasic.PowerPacks 的矩形、椭圆形和线条。

是否可以对其进行缩放?如何?

In a WinForm I use rectangles, ovals and lines of Microsoft.VisualBasic.PowerPacks.

Is it possible to make a zoom on it? How?

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

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

发布评论

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

评论(1

一人独醉 2024-09-12 16:04:09

假设你只是用它们来画图,没有输入控件,就这样做。

1)将它们移动到用户控件
2)将用户控件放在表单上 - 但设置visible=false
3)在加载表单时,调用用户控件的DrawToBitmap,保存它
4) 在绘画中...将位图绘制到表单中,并根据缩放比例进行缩放。
5) 内务处理...如果用户控件发生变化,则刷新位图;如果缩放或位图发生变化,则使表单无效。

祝你好运 ;-)

Assuming you are just using them to draw pictures, there are no input controls, do this.

1) Move them to a usercontrol
2) Put the usercontrol on the form - but set visible=false
3) In the load of the form, call the usercontrol's DrawToBitmap, saving it
4) In the paint ... Draw the bitmap to the form, scaling it per your zoom.
5) housekeeping...If the usercontrol changes, refresh the bitmap; if zoom or bitmap change, invalidate the form.

Good luck ;-)

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