在VS2005中为控制台应用程序分配一个图标(程序代码)
大家好:)
我的控制台应用程序已完成(C++)。
现在我正在寻找一种给它一个图标的方法。因此,当我分发它时,它会保留图标。
我还没找到任何东西。我真的很感激一些帮助!
没有人愿意继续帮助我吗? :(
Hi guys :)
I have my console app finished (c++).
And now I'm looking for a way to give it an icon. So when I distribute it, it keeps the icon.
I didn't find anything yet. I would really appreciate some help!
Nobody want to continue helping me? :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要一个资源文件 (.rc) 并指定一个图标以将其包含在二进制文件中。第一个图标(ID 号最小的图标)将是您的应用程序的图标。
不幸的是,新的 Express 版本不再附带集成资源编辑器,但您可以使用优秀的免费替代方案
您只需创建一个新的 .rc 文件,添加图标,然后将该 .rc 文件包含在您的 C++ 项目中。
You will need a resource file (.rc) and specify an icon to get it included in the binary. The first icon (the one with the lowest ID number) will be the icon of your application.
Unfortunately the new express editions do not come with an integrated resource editor anymore, but you can use the excellent free alternative ResEd for this task.
You simply have to create a new .rc file, add the icon and then include the .rc file in your c++ project.