在 .NET 中缩放矩形
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设你只是用它们来画图,没有输入控件,就这样做。
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 ;-)