below is my XML generated by using XMLSerializer and there are propertygrid's properties. What I wish to do is to edit the contents in XML file so that the property can be hidden, instead of change the code using [browsable(false)]. For example, there are Name, ID, Mode and email, these 4 properties, and I want to hide then Name by editing the content in XML file. What should I do to achieve this?
<?xml version="1.0" encoding="utf-8" ?>
<Person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name xsi:type="xsd:string">Hello</Name>
<ID xsi:type="xsd:string">1132701760</ID>
<Mode xsi:type="xsd:string">burst</Mode>
<Email xsi:type="xsd:string">junxiong1995@hotmail.com</Email>
</Person>