1

在一个group自定义WORD 插件custom tab的一个中,我需要显示一个对齐的内联。我怎样才能做到这一点?以下显示两个控件一个接一个地垂直对齐:Ribon XMLVSTOeditBoxhorizontallycheckBox

<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>
4

1 回答 1

4

使用一个带有水平 boxStyle 的框。

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

此功能区 XML 的结果

于 2017-05-05T21:02:01.980 回答