如何在 Visual C++ 中加载 .ani 光标?
好的,这是我创建自定义 .ani 光标时遵循的步骤,但没有运气!
1.我创建了一个resource.h文件并添加了
#ifndef RESOURCE_H
#define RESOURCE_H
#define MyCustomBusyCursor 100
#endif
2然后我创建了.rc文件(通过右键单击项目名称并选择资源文件)。但现在我不知道如何添加 .ani 文件的路径。如何在 main 中加载光标?我猜我将不得不使用 LoadCursor() 函数。
谢谢。
Ok so here are the steps i followed in creating a custom .ani cursor but no luck!
1. I created a resource.h file and added
#ifndef RESOURCE_H
#define RESOURCE_H
#define MyCustomBusyCursor 100
#endif
2 Then i created .rc file (by right clicking the project name and selecting Resource File). But now i do not know how to add path to my .ani file. How would I load my cursor in main? I am guessing i will have to use LoadCursor() function.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,如果有人好奇,我使用此代码来加载自定义光标:
您不需要执行资源操作。但我所做的事情是为了更改系统光标,也许对于应用程序,您可能必须使用 LoadCursor 函数。
Ok, in case anyone is curious i used this code to load a custom cursor:
You do not need to do resource stuff. But the stuff i did is for changing system cursor, maybe for an app you might have to use LoadCursor function(s).