town.uiml 1.9 KB

123456789101112131415161718192021222324252627282930313233
  1. <view>
  2. <button id="back" width="150" height="26" align-top="start" align-left="start" margin="5">ZURÜCK</button>
  3. <text id="title" width="75%" height="100" font-size="24" text-align="center">STADT</text>
  4. <text id="heroesTitle" align-left="start" align-top="title" margin="5" width="25%" height="26">DEINE HELDEN</text>
  5. <table id="heroes" align-left="start" align-top="heroesTitle" margin="5" width="25%" height="35%">
  6. <tr>
  7. <text width="100%">NAME</text>
  8. </tr>
  9. </table>
  10. <text id="ownDungeonsTitle" align-left="start" align-top="heroes" margin="5" width="25%" height="26">DEINE DUNGEONS</text>
  11. <table id="ownDungeons" align-left="start" align-top="ownDungeonsTitle" margin="5" width="25%" height="35%">
  12. <tr>
  13. <text width="100%">NAME</text>
  14. </tr>
  15. </table>
  16. <button id="createDungeon" align-left="start" align-top="ownDungeons" width="250" height="30" margin="5">DUNGEON ERSTELLEN</button>
  17. <text id="money" align-left="heroes" align-bottom="inventoryTitle" margin="5" width="25%" height="26"></text>
  18. <text id="inventoryTitle" align-left="heroes" align-top="title" margin="5" width="25%" height="26">DEIN INVENTAR</text>
  19. <table id="inventory" align-left="heroes" align-top="inventoryTitle" margin="5" width="25%" height="80%">
  20. <tr>
  21. <text width="100%">NAME</text>
  22. </tr>
  23. </table>
  24. <button id="openTavern" align-right="inventoryTitle" align-bottom="heroes" width="150" height="30" margin="5">TAVERNE</button>
  25. <text id="dungeonsTitle" align-left="inventory" align-top="title" margin="5" width="25%" height="26">ALLE DUNGEONS</text>
  26. <button id="openShop" align-right="dungeonsTitle" align-bottom="heroes" width="100" height="30" margin="5">LADEN</button>
  27. <table id="dungeons" align-left="inventory" align-top="dungeonsTitle" margin="5" width="25%" height="80%">
  28. <tr>
  29. <text width="50%">NAME</text>
  30. <text width="50%">BESITZER</text>
  31. </tr>
  32. </table>
  33. </view>