在画布上设置绘画的可见性(可见,看不见)
除了将其从画布中删除并使用存储的信息以使其再次可见的信息重新绘制外,有没有办法设置绘图对象的可见性?
我想在绘制vistvisual的绘图范围内关闭后进行。
Is there a way to set visibility of DrawingVisual object other than removing it from the canvas (for invisibility) and redraw it using information stored somewhere to make it visible again?
I want to do it after DrawingContext of the DrawingVisual has been closed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DrawingVisual
没有Visibility
属性,因为它不是从FrameworkElement
派生的。所以你不能那么轻易地做到这一点。但是,您可以通过调整其上的
VisualOpacity
使其透明。 MSDN 文档说,希望有帮助。
DrawingVisual
doesn't haveVisibility
property, as it doesn't derive fromFrameworkElement
.So you cannot do that that easily. However, you can make it transparent, by adjusting
VisualOpacity
on it. The MSDN doc says,Hope that helps.