12345678910111213141516171819202122232425262728293031 |
- <!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">
- <ui:style>
- .important {
- font-weight: bold;
- }
- </ui:style>
- <g:HTMLPanel>
- <g:VerticalPanel width="100%" height="">
- <g:HorizontalPanel>
- <g:Label text="About"/>
- </g:HorizontalPanel>
- <g:HorizontalPanel>
- <g:Label text="Version :"/>
- <g:Label text="0.1.6"/>
- </g:HorizontalPanel>
- <g:HorizontalPanel>
- <g:Label text="User :"/><g:Label ui:field="lblUser" />
- </g:HorizontalPanel>
- <g:HorizontalPanel>
- <g:Label text="Role :"/>
- <g:Label ui:field="lblRole"/>
- </g:HorizontalPanel>
- <g:HorizontalPanel>
- <g:Label text="Name :"/>
- <g:Label ui:field="lblName"/>
- </g:HorizontalPanel>
- </g:VerticalPanel>
- </g:HTMLPanel>
- </ui:UiBinder>
|