在VS2005中为控制台应用程序分配一个图标(程序代码)

发布于 2024-10-15 09:16:46 字数 144 浏览 1 评论 0原文

大家好:)
我的控制台应用程序已完成(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 技术交流群。

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

发布评论

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

评论(1

何以畏孤独 2024-10-22 09:16:46

您将需要一个资源文件 (.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.

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