为我的程序设置exe图标 [英] Set an exe icon for my program

查看:110
本文介绍了为我的程序设置exe图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Microsoft Visual Studio 2008而我正在尝试为我的程序设置一个exe图标。



我搜索了这个网站并发现了这个: 。


I'm using Microsoft Visual Studio 2008 and I'm trying to set an exe icon for my program.

I've searched this site and found this: How do I set the icon for my application in visual studio 2008?

But I can't find this "Resource View". I've looked everywhere in MVS08

How may I access Resource View and set the main icon for my application?

解决方案

Ben had a good start to the question along with the help of Tymek, but you need to go to the next step. Once you have added your icon to your resources, you will also need a resource file .rc in order to set the icon as the main icon of your application.

  1. If you don't know if you already have a resource file, open your Resource View for the project: go to View->Resource View or Ctrl+Shift+E (in Visual Studio 2012/2013 View->Other Windows->Resource View or you can type Ctrl+W,R to get it to open and in 2015 Ctrl+Shift+E). Check to see if you have a MyProject->MyProject.rc. This is where you should Add your icon. It should then create a resource file for you.

  2. Now Ctrl+Shift+F to search the whole solution. Search for your icon filename so that you can open the actual .rc file. When you do so it may suggest that you already have it open just accept.

  3. Now find a place to add the following line to the .rc file:

    MAINICON ICON "foo.ico"

The next time you compile you can browse to the folder with the executable and see that you have the icon associated with the app and when you run it from there it will use the icon.

Note:

  1. Sometimes when running from Visual Studio you will not get the icon while debugging.
  2. You need to use an .ico file. You cannot use a PNG image file for your executable's icon, it will not work. You must use .ico. There are web utilities that convert images to .ico files. as quoted from bobobobo.

这篇关于为我的程序设置exe图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆