About.ui.xml 862 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
  2. <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
  3. xmlns:g="urn:import:com.google.gwt.user.client.ui">
  4. <ui:style>
  5. .important {
  6. font-weight: bold;
  7. }
  8. </ui:style>
  9. <g:HTMLPanel>
  10. <g:VerticalPanel width="100%" height="">
  11. <g:HorizontalPanel>
  12. <g:Label text="About"/>
  13. </g:HorizontalPanel>
  14. <g:HorizontalPanel>
  15. <g:Label text="Version :"/>
  16. <g:Label text="0.1.6"/>
  17. </g:HorizontalPanel>
  18. <g:HorizontalPanel>
  19. <g:Label text="User :"/><g:Label ui:field="lblUser" />
  20. </g:HorizontalPanel>
  21. <g:HorizontalPanel>
  22. <g:Label text="Role :"/>
  23. <g:Label ui:field="lblRole"/>
  24. </g:HorizontalPanel>
  25. <g:HorizontalPanel>
  26. <g:Label text="Name :"/>
  27. <g:Label ui:field="lblName"/>
  28. </g:HorizontalPanel>
  29. </g:VerticalPanel>
  30. </g:HTMLPanel>
  31. </ui:UiBinder>