c++使用自定义光标gdi
好的,我正在尝试使用 gdi 创建光标。我什至找不到如何使用自定义光标的教程,我可以找到很多 C# 教程。我只知道我使用这两个函数来设置光标,setcursor 和 loadcursor 就是这样 谢谢 拉米
ok im trying to create cursor using gdi. i can't even find tutorial how to use customize cursor, i can find so many tutorials for c#. all i know that i use these two functions to set cursor,setcursor and loadcursor that is it
thanks
Rami
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 CreateCursor()。最后两个参数定义了实际的像素数据。这将为您提供 HCURSOR 句柄。
创建后,您可以将其与 SetCursor(HCURSOR 句柄)。
You can create your own cursor using CreateCursor(). The last two parameters defined the actual pixel data. This gives you a HCURSOR handle.
Once created, you can use it with SetCursor(HCURSOR handle).
我找到了一个您可能会找到的 MSDN 示例方便
I found a MSDN example you might find handy