-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomRibbon.xml
More file actions
64 lines (64 loc) · 2.51 KB
/
CustomRibbon.xml
File metadata and controls
64 lines (64 loc) · 2.51 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
<ribbon>
<tabs>
<tab idMso="TabAddIns" label="Field Marker">
<group id="ContentGroup" label="Content">
<button id="btnInfo"
label="Info"
size="large"
getImage="GetInfoImage"
onAction="OnInfoButtonClick" />
<splitButton id="splitBtnColor" size="large">
<button id="btnColor"
label="Color"
getImage="GetColorPickerImage"
onAction="OnColorButtonClick" />
<menu id="menuColors" itemSize="large">
<button id="btnNoColor"
label="No Color"
getImage="GetNoColorImage"
onAction="OnColorSelected" />
<button id="btnYellow"
label="Yellow"
getImage="GetYellowImage"
onAction="OnColorSelected" />
<button id="btnGreen"
label="Green"
getImage="GetGreenImage"
onAction="OnColorSelected" />
<button id="btnTurquoise"
label="Turquoise"
getImage="GetTurquoiseImage"
onAction="OnColorSelected" />
<button id="btnPink"
label="Pink"
getImage="GetPinkImage"
onAction="OnColorSelected" />
<button id="btnRed"
label="Red"
getImage="GetRedImage"
onAction="OnColorSelected" />
<button id="btnBlue"
label="Blue"
getImage="GetBlueImage"
onAction="OnColorSelected" />
<button id="btnDarkBlue"
label="Dark Blue"
getImage="GetDarkBlueImage"
onAction="OnColorSelected" />
<button id="btnTeal"
label="Teal"
getImage="GetTealImage"
onAction="OnColorSelected" />
<button id="btnGray"
label="Gray"
getImage="GetGrayImage"
onAction="OnColorSelected" />
</menu>
</splitButton>
</group>
</tab>
</tabs>
</ribbon>
</customUI>