2

请在下面找到 uibinder 代码:

但是,该按钮在浏览器中未正确对齐。但它在 Eclipse 设计器中正确显示。

请帮我解决这个问题。

<g:HorizontalPanel ui:field="a" width="100%" height="100%" horizontalAlignment="ALIGN_CENTER" verticalAlignment="ALIGN_MIDDLE">
        <g:Button width="150px" height="30px" ui:field="button">Click ThisThis</g:Button>
</g:HorizontalPanel>

谢谢,班纳特

4

1 回答 1

4

将需要在元素中设置对齐的 DockPanel、Horizo​​ntalPanel 或 VerticalPanel 的任何子代包裹起来。

<g:HorizontalPanel>
    <g:cell width="800px" horizontalAlignment="ALIGN_RIGHT">
        <g:Button ui:field="closeButton" text="Close" />
    </g:cell>
</g:HorizontalPanel>

看看这个链接

于 2012-12-09T06:42:18.477 回答