-
Notifications
You must be signed in to change notification settings - Fork 16
/
Ribbon1.xml
executable file
·28 lines (26 loc) · 982 Bytes
/
Ribbon1.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load" >
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabMail" visible="true">
<group id="grousp1" getLabel="GetGroupLabel" visible="true">
<button id="button1D"
size="large"
getLabel="GetButtonLabel"
getSupertip="GetSupertipLabel"
getImage="GetImage"
onAction="ShowMessageClick"></button>
</group>
</tab>
</tabs>
</ribbon>
<contextMenus>
<contextMenu idMso="ContextMenuMailItem">
<button id="SynchronizeMailItem"
onAction="ShowMessageClick"
showImage="true"
getImage="GetImage"
getLabel="GetContextMenuLabel"/>
</contextMenu>
</contextMenus>
</customUI>