The blog has moved to a new address. The blog is now located at http://devintelligence.com

Saturday, January 27, 2007

PropertyGrid: How to show description for specific property?

 Use Description attribute

[DisplayName("First Name")]
[Description(
"First Name of the person")]
public string FirstName
{
get
{
return _FirstName;
}
set
{
_FirstName
= value;
}
}


 


source(russian)

No comments: