Use large ribbon buttons rather than splitbutton.

This commit is contained in:
Daniel Kraus 2015-07-28 18:19:54 +02:00
parent f2e75b1abe
commit a725246f27

View File

@ -20,28 +20,24 @@
--> -->
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
onLoad="Ribbon_Load" loadImage="Ribbon_LoadImage"> onLoad="Ribbon_Load" loadImage="Ribbon_LoadImage">
<ribbon> <ribbon>
<tabs> <tabs>
<tab id="zaaReloaded2" label="zaaReloaded2"> <tab id="zaaReloaded2" label="zaaReloaded2">
<group id="zrlFormatGroup" label="Formatieren"> <group id="zrlFormatGroup" label="Formatieren">
<splitButton id="zrlFormatSplitButton" size="large"> <button id="zrlFormat" label="Formatieren" image="f.png" onAction="Ribbon_Click" size="large"
<button id="zrlFormat" label="Formatieren" image="f.png" onAction="Ribbon_Click" supertip="Formatiert den ausgewählten Bereich mit dem zuletzt verwendeten Stil." />
supertip="Formatiert den ausgewählten Bereich mit dem zuletzt verwendeten Stil." /> <button id="zrlChooseFormat" label="Stilauswahl" image="fff.png" onAction="Ribbon_Click" size="large"
<menu id="zrlFormatMenu" screentip="Formatierungsmenü" supertip="Öffnet ein Menü mit einem weiteren Befehl."> supertip="Zeigt eine Liste vorhandener Stile an. Stile können bearbeitet, hinzugefügt, gelöscht werden." />
<button id="zrlChooseFormat" label="Stil auswählen/bearbeiten" image="fff.png" onAction="Ribbon_Click" <button id="zrlDaniel" label="Daniels Spezial" image="dk.png" onAction="Ribbon_Click" size="large"
supertip="Zeigt eine Liste vorhandener Stile an. Stile können bearbeitet, hinzugefügt, gelöscht werden." /> getVisible="Daniel_GetVisible"/>
</menu> </group>
</splitButton> <group id="zrlInfoGroup" label="Info">
<button id="zrlDaniel" label="Daniels Spezial" image="dk.png" onAction="Ribbon_Click" size="large" <button id="zrlAbout" label="Über..." image="i.png" onAction="Ribbon_Click" size="large"
getVisible="Daniel_GetVisible"/> screentip="Über zaaReloaded"
</group> supertip="Zeigt Informationen über das Add-in an." />
<group id="zrlInfoGroup" label="Info"> </group>
<button id="zrlAbout" label="Über..." image="i.png" onAction="Ribbon_Click" size="large" </tab>
screentip="Über zaaReloaded" </tabs>
supertip="Zeigt Informationen über das Add-in an." /> </ribbon>
</group>
</tab>
</tabs>
</ribbon>
</customUI> </customUI>