Office Ribbon UI XML - How to create an In-Ribbon gallery, not a drop-down menu button?

I am trying to integrate a custom .net control into several Microsoft Office 2010 applications.

I created my Ribbon UI in XML. But I don’t know how to replicate an In-Ribbon Gallery element . (e.g. style group in Word or quick steps in Outlook)

If there is no direct control available, is there a way to get closer to it using another tag?

+3
source share
1 answer

, In-Ribbon . , , , - :

<gallery id="galMonthsEng" label="Months (English)" 
    columns="3" rows="4"> 
    <item id="galMonth1" label="January"/> 
    <item id="galMonth2" label="February"/> 
    <item id="galMonth3" label="March"/> 
    <item id="galMonth4" label="April"/> 
    <item id="galMonth5" label="May"/> 
    <item id="galMonth6" label="June"/> 
    <item id="galMonth7" label="July"/> 
    <item id="galMonth8" label="August"/> 
    <item id="galMonth9" label="September"/> 
    <item id="galMonth10" label="October"/> 
    <item id="galMonth11" label="November"/> 
    <item id="galMonth12" label="December"/> 
    <button id="btnGal1" label="Regional Settings" 
        imageMso="ShowTimeZones" 
        onAction="ShowRegionalSettings"/>
</gallery> 
0

All Articles