Retrieve Value From Xml Attributes
- by Chong
hi everyone,
i want to get some value from xml file filtering with xml attribute.
my xml format is like below.
<Object type="System.Windows.Forms.TextBox">
<Property name="Name">RadioButton1</Property>
<Property name="Size">86, 24</Property>
<Property name="Text">RadioButton1</Property>
<Property name="Location">175, 126</Property>
</Object>
for example,
if name = "Name" then i will add its value to name textbox.
if name = "Size" then i will add its value to size textbox.
regards
Chong