sebastiaanos
Nieuwe gebruiker
- Lid geworden
- 21 nov 2008
- Berichten
- 3
hallo allemaal,
ik heb een menu en submenu gemaakt in Word 2007 op de ribbon bar. nu wil ik graag na die submenu een dropdown menu plaatsen. nu heb ik wel een appart dropdown menu maar die moet ik in de submenu zien te plaatsen.
hier is mijn Code:
ik hoop dat jullie mijn kunnen helpen want ben nu echt radeloos.
met vriendelijke groet,
Sebastiaanos
ik heb een menu en submenu gemaakt in Word 2007 op de ribbon bar. nu wil ik graag na die submenu een dropdown menu plaatsen. nu heb ik wel een appart dropdown menu maar die moet ik in de submenu zien te plaatsen.
hier is mijn Code:
PHP:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="RibbonControl.Onload">
<ribbon>
<tabs>
<tab idMso="TabAddIns" label="BALK">
<group id="group1">
<menu id="menu3" keytip="A" screentip="ABC" supertip="AAA" description="Menu" label="Templates" showImage="false" itemSize="normal">
<menu id="menu4" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Gensys" showImage="false" itemSize="normal">
<menu id="menu41" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Template Healthcheck" showImage="false" itemSize="normal">
<button id="button411" label="button411" onAction="RibbonControl.button411_Clicked"/>
</menu>
<menu id="menu42" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Template standaard" showImage="false" itemSize="normal">
<button id="button422" label="button422" onAction="RibbonControl.button422_Clicked"/>
</menu>
</menu>
<menu id="menu5" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Infra Solutions" showImage="false" itemSize="normal">
<menu id="menu51" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Mail Template" showImage="false" itemSize="normal">
<button id="button511" label="button511" onAction="RibbonControl.button511_Clicked"/>
</menu>
<menu id="menu52" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&UI Template " showImage="false" itemSize="normal">
<button id="button522" label="button522" onAction="RibbonControl.button522_Clicked"/>
</menu>
</menu>
<menu id="menu6" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Res-Q Service" showImage="false" itemSize="normal">
<menu id="menu61" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Template Procedurebeschrijving" showImage="false" itemSize="normal">
<button id="button611" label="button611" onAction="RibbonControl.button611_Clicked"/>
</menu>
<menu id="menu62" keytip="e" screentip="ABC" supertip="AAA" description="Menu" label="&Template Presentatie" showImage="false" itemSize="normal">
<button id="button622" label="button622" onAction="RibbonControl.button622_Clicked"/>
</menu>
</menu>
</menu>
</group>
<group id="CustGrp1" label="Macros" >
<dropDown id="list1" getItemCount="RibbonControl.GetItemCount" getItemLabel="RibbonControl.GetItemLabel"
onAction="RibbonControl.list1_Clicked"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
met vriendelijke groet,
Sebastiaanos
Laatst bewerkt door een moderator: