1
Reply

Generate window form by xml file

ankur rastogi

ankur rastogi

Apr 16 2010 3:35 AM
2k


is it possible to generate a window form by using xml file?????
plz reply
 
file is like that
<Forms>
  <Form name="frmShow" text="Ankur" h="100" w="100" visible="true">
    <TextBoxs>
      <TextBox name="txtName" type="TextBox" x="10" y="10" visible="true">Name</TextBox>
      <TextBox name="txtAge" type="TextBox" x="10" y="30" visible="true">Age</TextBox>
    </TextBoxs>
    <Buttons>
      <Button name="btnOK" type ="Button" x="10" y="20" visible="true">OK</Button>
      <Button name="btncancle" type ="Button" x="10" y="30" visible="true">Cancle</Button>
    </Buttons>
  </Form>
  <Form name="frmOrder" text="Order" x="200" y="100" visible="true">
    <TextBoxs>
      <TextBox name="txtName1" type="TextBox" x="10" y="10" visible="true">Name1</TextBox>
      <TextBox name="txtAge1" type="TextBox" x="15" y="10" visible="true">Age1</TextBox>
    </TextBoxs>
    <Buttons>
      <Button name="btnOK1" type ="Button" x="10" y="20" visible="true">OK1</Button>
      <Button name="btncancle1" type ="Button" x="10" y="30"
visible="true">Cancle1</Button>
    </Buttons>
  </Form>
</Forms>

Answers (1)