如何在自定义功能区中显示水平对齐的两个控件 XML

How to display two controls aligned horizontally in a custom Ribbon XML

groupcustom tabRibon XML 的自定义 VSTO WORD 插件中,我需要显示一个 editBox 对齐的 horizontallycheckBox 内联。我怎样才能做到这一点?以下显示了一个接一个垂直对齐的控件:

<tab idMso="TabAddIns">  
    <group id="ContentGroup" label="Content">  
        <editBox id="editBoxID" label="Insert Text"  
             screentip="Text" onAction="getText"/>  
        <checkBox id="checkBoxID" label="Enable" />  
    </group>  
</tab>

使用带有水平 boxStyle 的框。

<group id="groupid" label="Content">
  <box id="ContentGroup" boxStyle="horizontal">
    <editBox id="editBoxID" label="Insert Text" />
    <checkBox id="checkBoxID" label="Enable" />
  </box>
</group>