是否可以从 VisualBrush 在 WPF 中创建光标?
我正在执行一些拖放操作,并且我想使用为光标拖动的元素的视觉副本。 获得元素的 VisualBrush 很容易,但我不知道如何将其变成光标。
我已阅读 Jamie Rodriguez 博客文章,但他的解决方案并不完全是我正在寻找的,因为他基本上将事情连接到“全局”GiveFeedback 事件(他的 DragSource)。 我宁愿只从 VisualBrush 中获取图像并将其设为光标。 那可能吗?
I'm doing some Drag and Drop operations, and I want to use a visual copy of the element I'm dragging for the cursor. It's easy enough to get a VisualBrush of the element, but I have no idea how to turn this into a cursor.
I've read the Jamie Rodriguez blog posts, but his solution isn't quite what I'm looking for because he essentially wires things up to a "global" GiveFeedback event (his DragSource). I'd rather just take the image from the VisualBrush and make that the cursor. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常(在您链接的示例中和 Bea Stollnitz 的这个示例)这是通过
Adorner
完成的。如果您确实想更改
Cursor
本身,则必须在内存中构造一个 .cur 文件并将其流式传输到光标
构造函数。 我从来没有这样做过,也不推荐这样做,但我认为这应该是可能的。Usually (both in the example you linked and in this example by Bea Stollnitz) this is done with an
Adorner
.If you really wanted to change the
Cursor
itself, you'd have to construct a .cur file in memory and stream it into theCursor
constructor. I've never done this and I don't recommend it, but I think it should be possible.