I'm trying to create an Outlook 2010 Add-in with Visual Studio. Is it possible to use the ribbon Visual Designer output directly in your add-in, or do you have to export it to xml first? All the examples I could find exported the design to xml. If you can use the Visual Designer files directly in your solution, how do you do this?
2 Answers
1
votes
Because Outlook 2010 has a whole bunch of ribbons (one for mail read, another for mail compose, another for the explorer, etc.), you have to specify the RibbonType of the ribbon you're making. It defaults to the mail read ribbon, so I'm betting if you open a received mail item, you'll see your ribbon there.
RibbonType
of the ribbon you're making. It defaults to the mail read ribbon, so I'm betting if you open a received mail item, you'll see your ribbon there. – Peter Majeed