winforms - How to add tooltip to enum selection in propertygrid in C#? -
I came to know how to use the basic features of an PropertyGrid and I found out that my enum constant is not enough Self explanatory. Is it possible that when the user opens the list of all the constant constants that appears for a tooltip, which continuously he raises his mouse? For example, if I have a property in some grid which is some ANNUM and value is Enum1, Enum2, Enum3, when the user wants to change the value of the property, then he brings down the list and anom is more than 1, a tooltip "This Enum1" and will look like this.
You want to override the default convert-to-string functionality of enum as described in these :
Or this MSDN article:
Comments
Post a Comment