visual-studioiconstrayicon

Visual Studio - How to edit disabled (grayed out) icon in resources?


In Visual Studio, I've added a new icon in resources. However, for 32-bit icons, all of the tools are disabled (grayed out), and icon customization seems impossible:

enter image description here

What needs to be done in order to use those tools to edit the icon (because, if you click on 8-bit icons, they can be edited with those tools).


Solution

  • In below screenshot you'll see 48x48 pixel bitmap in Icon file but with 32bit color pallet. Looks like that Visual Studio Image Editor do not support editing 32bit images. Therefore, toolbar is grayed out. enter image description here

    What I did, is that I created same dimension image but with 24bit color pallet. Just like in screen shot below: enter image description here You can see that toolbar is active.

    I can conclude that Visual studio can support up to 24bit color pallet. 32bit is just readonly for now.

    Regards.