Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Visual Studio 2010 let you edit icons?

When I double click on a .ico file in Visual Studio 2010 (Professional), it opens what looks like an icon editor. It looks like it should be really easy to pick a color from the left and edit pixels.

But my mouse is a magnifying glass icon. Left click, right click, all they do is toggle zoom on the icon. I can't figure out how to do anything useful.

Am I missing something obvious? Is this icon view as useless as it seems?

like image 557
Grant Birchmeier Avatar asked May 25 '12 17:05

Grant Birchmeier


People also ask

How do I use icons in Visual Studio?

On the menu bar, choose Project > Properties. When the Project Designer appears, choose the Application tab. (Visual Basic)—In the Icon list, choose an icon (. ico) file.

Does Visual Studio come with icons?

From Visual Studio 2012 onward, the icons are downloadable separately from Visual Studio: The Visual Studio Image Library.


2 Answers

You can't directly edit 32-bit color icons but you can convert them manually to 24-bit :

Right click > Add new icon 

Open your Icon1.ico file.

Right click > New Image Type or press Ins to open the New Icon Image Type dialog.

Select the format you want, say 96x96, 24 bit or add any custom size and color depth.

Then copy/paste from your 32-bit icon file and save.

Et voilà ! You can now edit your 24-bit color icon.

like image 60
hoang Avatar answered Sep 28 '22 08:09

hoang


Doh! I needed to enable View -> Toolbars -> Image Editor.

Thanks to @detale.

like image 38
Grant Birchmeier Avatar answered Sep 28 '22 09:09

Grant Birchmeier