I’ve seen similar questions asked before about this, but not precisely what I’m after.
I have a User Control and would like to build in an expandable bunch of properties for editing the control at design time. Note, NOT a group of properties but a list of properties similar to the Size or Location properties which you can open up to reveal other properties. Is this possible and how would I go about doing it?
Thanks,
You need to “group” your properties into a class and then apply a TypeConverter:
Then your UserControl would use that class instead of the individual properties it encompasses:
Create your own TypeConverter to handle custom circumstances.