银光画笔
我是 Silverlight 的新手,我正在 Silverlight 上寻找类似画笔的东西,但没有成功。我看到 Tamir Khason 博客关于在 Silverlight 中构建绘图画笔,我下载了代码但没有成功 我正在考虑下一个链接:
http://www.codeproject.com /KB/silverlight/Silverlight-DrawingBrush.aspx
有人能找到实现DrawingBrush的方法吗???
谢谢。 埃亚勒
I'm new in Silverlight, and I'm looking for something like a drawing brush on Silverlight without success. I saw Tamir Khason blog on building a drawing brush in Silverlight and i download the code without any success
i'm taking about the next link:
http://www.codeproject.com/KB/silverlight/Silverlight-DrawingBrush.aspx
Can someone find the way to implement the DrawingBrush???
Thanks.
Eyal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有直接的支持。
您需要使用 Silverlight 3 中提供的 WritableBitmap 类编写代码。
我们能够使用 WritableBitmap 创建 VisualBrush 类型的东西。
There is no direct support.
You need to write code with the WritableBitmap class available in Silverlight 3.
We were able to create a VisualBrush kind of thing using the WritableBitmap.