0
我要創建這個簡單的靜態佈局:如何在UiBinder上使用FlexTable?
但不幸的是我無法找到如何做到這一點與FlexTable
(或別的東西)的說明。這不能用簡單的Vertical*
或HorizontalPanel
來完成,因爲標籤和文本框的對齊方式不會那麼正確。
有沒有辦法做這樣的事情在UiBinder的:
<x:TableView>
<x:TableRow>
<x:TableCell><g:Label ../></xTableCell>
<x:TableCell><g:TextBox ../></xTableCell>
</x:TableRow>
<x:TableRow>
<x:TableCell><g:Label ../></xTableCell>
<x:TableCell><g:TextBox ../></xTableCell>
</x:TableRow>
<x:TableRow>
<x:TableCell><g:Label ../></xTableCell>
<x:TableCell><g:CheckBox../><g:CheckBox../> .. </xTableCell>
</x:TableRow>
</x:TableView>
事實證明,可以在'ui.xml'文件中使用裸HTML - 我不知道:D – displayname