下の画像のようなグループでExcel用のカスタムリボンを作成しようとしています。(下にドロップダウンボックスがある2列のボタン)。
自分の思い通りにできないと思い始めています。
私はいくつかの異なる方法を試しましたが(そのうちの1つは以下にあります)、それらはすべて同じ出力になります。3列、3列目にドロップダウンボックスがある2x2ボタン。
これが可能かどうか誰かが知っていますか?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customUI onLoad="Ribbon.onLoad" xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab id="toolRibbon" label="redacted">
<group id="groupDocument" label="Secret Document">
<box id="z" boxStyle="vertical">
<box id="a" boxStyle="horizontal">
<box id="aa" boxStyle="vertical">
<button id="aaa" label="AAA" />
<button id="aab" label="AAB" />
</box>
<box id="ab" boxStyle="vertical">
<button id="aba" label="ABA" />
<button id="abb" label="ABB" />
</box>
</box>
<comboBox id="b" label="Looms">
<item id="ba" label="BA" />
<item id="bb" label="BB" />
<item id="bc" label="BC" />
</comboBox>
</box>
</group>
</tab>
</tabs>
</ribbon>
</customUI>