public class Class1
{
private object _Test;
public object Test
{
get{return this._Test;}
set{this._Test = value;}
}
} Class1 c = new Class1();
this.propertyGrid1.SelectedObject = c;在propertygrid 上该Test 属性为只读,如何把他改为可写?