2011-11-22 65 views

回答

0

您可以使用GWT Button類並以您需要的方式進行設計。例如,如果你使用UiBinder的:

<g:Button ui:field="button" styleName="my-button"> 
    <ui:msg key="myButtonMsg">Button</ui:msg> 
</g:Button> 

用自己的CSS類像

.my-button { 
    background: green; 
    border: 1px solid green; 
    color: white; 
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 
    border-radius: 4px; 
    padding: 5px 15px 5px 15px; 
    font-weight: bold; 
} 

如果您需要的文本有白框周圍再加入<span>左右按鈕上的文字,並添加color: black;background-color: white;屬性爲span

+0

PushButton也有很好的功能 - 你可以在你的uibinder中定義,懸停,向下等狀態,(我認爲)任意的HTML –