如何在UIBinder中使用SplitLayoutPanel?我嘗試了很多不同的東西,但都沒有正常工作。如何在UIBinder中使用SplitLayoutPanel?
1
A
回答
5
你會發現SplitLayoutPanel
就像DockLayoutPanel
一樣工作。 (SplitLayoutPanel
是DockLayoutPanel
的子類。)您可能已在Layout Panels的開發人員指南部分中閱讀了此內容。
通常,一個類的UiBinder文檔實際上是在其超類的文檔中給出的。看看documentation for DockLayoutPanel
,看看它是否適合你。
0
The "Moving to Standards Mode" section關於佈局使用面板的開發人員指南頁面上說「SplitPanels在標準模式下非常不可預測,您應該幾乎總是用SplitLayoutPanel替換它們。」
如果這樣不能解決您的問題,那麼請更具體地說明您嘗試過的事情,您預期會發生的事情以及發生的事情。
0
這裏是SplitLayoutPanel示例代碼,
<g:SplitLayoutPanel>
<g:west size="200">
<g:VerticalPanel />
</g:west>
<g:center>
<g:VerticalPanel />
</g:center>
<g:south size="200">
<g:VerticalPanel />
</g:south>
<g:north size="200">
<g:VerticalPanel />
</g:north>
</g:SplitLayoutPanel>
感謝,
Gnik
相關問題
- 1. UiBinder和SplitLayoutPanel不顯示
- 2. 如何調整SplitLayoutPanel的拖動器在GWT UiBinder的模板
- 3. 無法使SplitLayoutPanel工作 - GWT + UIBinder讓我瘋狂
- 4. 如何重新設置GWT UIBinder模板中的SplitLayoutPanel的拖動器
- 5. 如何重新設置GWT UIBinder模板中的SplitLayoutPanel的拖動器#2
- 6. 如何在CheckBox ValueChangeEvent中使用@UIBinder?
- 7. 如何動態使用UIBinder?
- 8. 如何使用UiBinder的
- 9. 如何使用UiBinder的
- 10. 在SmartGWT中使用uibinder?
- 11. 如何在UiBinder上使用FlexTable?
- 12. 如何使內容使用UiBinder的
- 13. UiBinder使用ToggleButton
- 14. 如何獲得SplitLayoutPanel的中央控件?
- 15. 如何使用JavaScript與gwt Uibinder
- 16. 我如何用UiBinder的
- 17. 在GWT中使用非CSS常量UiBinder
- 18. 在UiBinder中使用GWT編輯器
- 19. 使用uiBinder在gwt中構建表格
- 20. 如何在GWT的UiBinder中使用CSS僞類?
- 21. 如何在UiBinder XML文件中使用AbsolutePanel
- 22. 如何使用UiBinder在VerticalPanel中處理多個ClickEvents?
- 23. 如何在「GWTP」的UiBinder中使用「<g:TabLayoutPanel」?
- 24. GWT:在HTML模板中使用UIBinder ...如何讓它工作?
- 25. GWT:如何使用UIBinder在Anchor中嵌入小部件
- 26. 如何使用UiBinder在DecoratorPanel中包裝StackLayoutPanel?
- 27. 如何引用GWT UiBinder中的Widget?
- 28. SplitLayoutPanel裏面DisclosurePanel
- 29. 孩子身高在SplitLayoutPanel
- 30. GWT:如何在SplitLayoutPanel中執行onResize()時獲取新大小?
那好吧,我怎麼使用與UiBinder的一個SplitLayoutPanel?我仍然找不到包含示例代碼的任何文檔。 – 2010-03-22 15:33:03