Advertisement
filmee24

GUIXML - Example

Aug 9th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.40 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <GUI>
  3.   <!-- Windows -->
  4.   <Window name="test" text="hello world" />
  5.  
  6.   <!-- Controls -->
  7.   <Button window="main" name="go" x="140" y="9" OnClick="ShowWindow('test')">Öffne Video</Button>
  8.  
  9.   <ComboBox window="main" name="cb1" x="10" y="10">
  10.     <Item>Hallo</Item>
  11.   </ComboBox>
  12.  
  13.   <TextBox window="main" name="input" x="10" y="10" />
  14.   <RichTextBox window="main" name="rtb1" x="10" y="10" />
  15.   <WebBrowser window="main" name="wb2" url="google.de" x="20" y="20" />
  16.  
  17.   <SyntaxRichTextBox window="main" visible="true" x="10" y="20" w="200" h="200" name="srtb1">
  18.     <Pattern words="hallo|welt" color="Red" bold="false" italic="false" underlined="false" />
  19.   </SyntaxRichTextBox>
  20.  
  21.   <ProgressBar window="main" visible="true" x="10" y="10" name="pb1">25</ProgressBar
  22.  
  23.  <Image window="test" name="pb1" x="1" y="1" src="C:\Users\HEM\Desktop\1.jpg" />
  24.  
  25.   <Text window="main" name="lbl1" x="1" y="1">Hallo Welt</Text>
  26.  
  27.   <Link window="main" name="ll1" x="1" y="1" OnClick="App.Start('http://www.google.de/')">öffnen</Link>
  28.   <DateTimePicker window="main" x="20" y="20" name="dtp1" />   
  29.  
  30.   <CheckBox window="main" x="10" y="10" checked="true" name="chb1">CheckboxTest</CheckBox>
  31.   <RadioButton window="main" x="10" y="10" name="rb1" checked="false">Radio</RadioButton>
  32.   <RadioButton window="main" x="10" y="30" name="rb2" checked="true">radio</RadioButton>
  33.  
  34. </GUI>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement