How can I create a Windows Form with properties provided by an XML document?
Here is such an XML document:
<Form>
<Size>
<Width>558</Width>
<Height>537</Height>
</Size>
<Text>XML saving</Text>
<Name>Form1</Name>
<Button>
<Name>button1</Name>
<Text>XML button</Text>
<Size>
<Width>130</Width>
<Width>45</Width>
</Size>
<Location>
<X>14</X>
<Y>24</Y>
</Location>
</Button>
</Form>
Upon loading the form, I need to show the form and the button on it with the values from the XML document.
Can anyone provide any assistance or tutorials on this subject?