在画布上设置绘画的可见性(可见,看不见)

发布于 2024-12-05 07:09:05 字数 93 浏览 0 评论 0原文

除了将其从画布中删除并使用存储的信息以使其再次可见的信息重新绘制外,有没有办法设置绘图对象的可见性?

我想在绘制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 技术交流群。

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

发布评论

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

评论(1

燃情 2024-12-12 07:09:05

DrawingVisual 没有 Visibility 属性,因为它不是从 FrameworkElement 派生的。

所以你不能那么轻易地做到这一点。但是,您可以通过调整其上的 VisualOpacity 使其透明。 MSDN 文档说,

视觉对象的不透明度值表示为 0 到 1 之间的值。值 0 表示元素完全透明,而值 1 表示元素完全透明。完全不透明。值 0.5 表示元素的不透明度为 50%。小于 0 的值被视为 0;大于 1 的值被视为 1。

希望有帮助。

DrawingVisual doesn't have Visibility property, as it doesn't derive from FrameworkElement.

So you cannot do that that easily. However, you can make it transparent, by adjusting VisualOpacity on it. The MSDN doc says,

The value of the opacity of the Visual is expressed as a value between 0 and 1. A value of 0 indicates that the element is completely transparent, whereas a value of 1 indicates that the element is completely opaque. A value of 0.5 indicates that the element is 50 percent opaque. Values that are less than 0 are treated as 0; values that are greater than 1 are treated as 1.

Hope that helps.

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