Moshe HAYUN
Moshe HAYUN

Reputation: 101

Add a button to Outlook message ribbon

I'm totally newbie in Office Add in Development. Started few hours ago :)

Office version: 2016

I would like to create an add-in, with a button that will allow me to synchronize my email with my custom program and "flag" it to avoid a new synchronization in the future. For that, it would be necessary to:

I know I'm asking a lot, but I'm not asking to get the job done, just to be able to steer in the right direction. So if you have tutorials, articles etc ... to help me, it would be great.

Thank you

N.B.: Copy of this question has been posted in VSTO forum here

Upvotes: 1

Views: 1324

Answers (1)

Eugene Astafiev
Eugene Astafiev

Reputation: 49455

To create a custom ribbon UI, VSTO provides two possible ways:

To keep a separate state for the control for each inspector window separately you need to implement ribbon callbacks and call the Invalidate or InvalidateControl methods of the IRibbonUI interface. Read more about these methods in the following articles:

The Fluent UI (aka Ribbon UI) is described in depth:

Upvotes: 1

Related Questions