

litesoft
@ 948
litesoft / trunk / GWT_Sandbox / gwtUITrimmed / src / com / gwtmobile / ui / kitchensink / client / panel / HeaderPanelPage.ui.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:m="urn:import:com.gwtmobile.ui.client.widgets"> <ui:style> </ui:style> <g:HTMLPanel> <m:HeaderPanel leftButton="Back"> <g:Label>Header Panel</g:Label> </m:HeaderPanel> <br/> <m:HeaderPanel> <g:Label>Panel Has No Button</g:Label> </m:HeaderPanel> <br/> <m:HeaderPanel leftButton="Menu"> <g:Label>Panel Has Left Button</g:Label> </m:HeaderPanel> <br/> <m:HeaderPanel rightButton="Menu"> <g:Label>Panel Has Right Button</g:Label> </m:HeaderPanel> <br/> <m:HeaderPanel leftButton="Back" rightButton="Next"> <g:Label>Panel Has Two Buttons</g:Label> </m:HeaderPanel> </g:HTMLPanel> </ui:UiBinder> |