WPF:将 VisualBrush 转换为绘图?
我有一个 VisualBrush,需要这个 VisualBrush 作为绘图。有谁知道如何做到这一点?感谢您的任何提示!
I have a VisualBrush and need this VisualBrush as a Drawing. Anyone knows how this can be done? Thanks for any hint!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 XAML 版本:
Here's the XAML version:
您的问题实际上没有意义,因为
VisualBrush
与Drawing
无关(使用DrawingBrush
更有意义)。但是,您可以使用VisualBrush
在其上绘画来创建绘图
。类似的东西应该可以工作:(这对于从
TileBrush
继承的任何画笔都有效,而不仅仅是VisualBrush
)Your question doesn't really make sense, because a
VisualBrush
is unrelated to aDrawing
(it would make more sense with aDrawingBrush
). However, you can create aDrawing
by using theVisualBrush
to paint on it. Something like that should work :(this is valid for any brush inherited from
TileBrush
, not just aVisualBrush
)