Hello,
I have a property ColorOfCar on the property grid as follows:
[
Category("Car Body"),
Description("The color of the car"),
]
public string ColorOfCar
{
get
{
return this.colorOfCar;
}
set
{
this.colorOfCar = value;
}
}
I need to change the description attribute at runtime. (Say, change it to "The favourite color of the car" instead of the original one "The color of the car").
Can somone help me?
Thanks
I have a property ColorOfCar on the property grid as follows:
[
Category("Car Body"),
Description("The color of the car"),
]
public string ColorOfCar
{
get
{
return this.colorOfCar;
}
set
{
this.colorOfCar = value;
}
}
I need to change the description attribute at runtime. (Say, change it to "The favourite color of the car" instead of the original one "The color of the car").
Can somone help me?
Thanks