Advertisement
CoderMusgrove

Untitled

May 5th, 2015
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.61 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE nifty>
  3. <nifty xmlns="http://nifty-gui.sourceforge.net/nifty-1.3.xsd"
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.     xsi:schemaLocation="http://nifty-gui.sourceforge.net/nifty-1.3.xsd http://nifty-gui.sourceforge.net/nifty-1.3.xsd">
  6.     <useStyles filename="nifty-default-styles.xml" />
  7.     <useControls filename="nifty-default-controls.xml" />
  8.  
  9.     <screen id="mainmenu">
  10.  
  11.         <layer id="background" backgroundColor="#ff0000">
  12.         </layer>
  13.  
  14.         <layer id="title" childLayout="horizontal">
  15.  
  16.             <panel id="panelTitle" childLayout="horizontal">
  17.  
  18.                 <control name="label" text="Title Placeholder" align="center"
  19.                     font="Interface/Fonts/Consolas_24.fnt" width="100%" height="100%">
  20.                 </control>
  21.             </panel>
  22.         </layer>
  23.  
  24.         <layer id="buttons" childLayout="horizontal">
  25.             <panel id="panelButtons" childLayout="horizontal">
  26.  
  27.                 <control name="button" text="Join Server">
  28.                 </control>
  29.  
  30.                 <control name="button" text="Options">
  31.                 </control>
  32.  
  33.                 <control name="button" text="Quit">
  34.                 </control>
  35.             </panel>
  36.         </layer>
  37.  
  38.         <layer id="footer" childLayout="horizontal">
  39.             <panel id="panelFooter" childLayout="horizontal" valign="bottom"
  40.                 width="100%" height="10px">
  41.  
  42.                 <control name="label" text="Project Hermit v1.0.0_I" align="left"
  43.                     font="Interface/Fonts/Consolas_24.fnt" width="100%" height="100%">
  44.                 </control>
  45.  
  46.                 <control name="label" text="Copyright (C) 2015 All Rights Reserved."
  47.                     align="right" font="Interface/Fonts/Consolas_24.fnt" width="100%"
  48.                     height="100%">
  49.                 </control>
  50.             </panel>
  51.         </layer>
  52.     </screen>
  53. </nifty>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement