loadGame.xml 839 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <box width="100%" height="100%" horizontalAlign="center" >
  3. <vbox id="load_box" width="80%" height="80%" horizontalAlign="center"
  4. verticalAlign="center" style="background-color: grey; border: 2px solid red; opacity: 1;" >
  5. <label text="Load Game" style="color: white;" />
  6. <listview id="lv1" width="60%" height="150" horizontalAlign="center"
  7. selectedIndex="0" >
  8. <item-renderer layoutName="horizontal" width="100%" >
  9. <image id="image" width="16" height="16" />
  10. <label id="item" width="100%" />
  11. </item-renderer>
  12. <data>
  13. <item image="images/icons/gc/folder.png" item=".." />
  14. </data>
  15. </listview>
  16. <button id="cont" text="Continue" />
  17. </vbox>
  18. </box>