Home > Software design >  how can we add SVG icons to create the ribbon
how can we add SVG icons to create the ribbon

Time:11-25

Can we add SVG icons instead of PNG icons using custom UI Editor? if not then how can we add SVG icons in Visual Studio (I'm using VB NET language to create the ribbon)

I tried adding the SVG icon in custom UI editor but it gives me the prompt "Parameter not supported!"

CodePudding user response:

You can use the following formats of icons for Ribbon controls: bmp, png and ico. Vector graphics (SVG) is not supported.

You need to convert your SVG file into one of the supported file formats. The ico images can embed images with different resolutions, so the MS Office may pick up the most appropriate one.

  • Related