是否可以从 VisualBrush 在 WPF 中创建光标?

发布于 2024-07-15 01:09:53 字数 400 浏览 6 评论 0原文

我正在执行一些拖放操作,并且我想使用为光标拖动的元素的视觉副本。 获得元素的 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 技术交流群。

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

发布评论

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

评论(1

天暗了我发光 2024-07-22 01:09:53

通常(在您链接的示例中和 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 the Cursor constructor. I've never done this and I don't recommend it, but I think it should be possible.

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