Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the picture below, "MyCars" is a collection. If an object's property is a collection, then in a PropertyGrid, the value appears as the string "(Collection)" with a button to the right if the item is selected.

Is it possible to change the "(Collection)" value? If so, how? The reason I ask is because I have implemented a custom UITypeEditor for the object that will appear in the PropertyGrid in my program. So far, the button on the right appears but the text value is the same as the display name of the property. I'd like a different string to appear there.

Example propertygrid.

Edit: for what it's worth, I know I can override the PaintValue method from UITypeEditor and provide an icon, which I may end up doing if I can't solve this issue, but I'd still like to know if and how that "(Collection)" text can be changed.

share|improve this question
I think you would still end up with "(Collection)" beside your icon if you used the PaintValue method, but not sure. – Barry Franklin Aug 13 '12 at 17:56

1 Answer

up vote 5 down vote accepted

This article Customized display of collection data in a PropertyGrid might be of help

share|improve this answer
1  
^ That's the answer! – Barry Franklin Aug 13 '12 at 18:00
Wow! That worked! Thanks! – kevin628 Aug 13 '12 at 18:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.