views:

44

answers:

1

I'm working on a compact framework project and whilst most of the properties are fairly straight forward (I.e. mark them as browsable in the xmta file), I'm struggling to get this to work for more complex types - on the full framework, I'd just implement a custom TypeConverter and go from there, but it seems the CF TypeConverter doesn't have any of the type converting methods to override, which has left me a little stuck?

It probably should be blindingly obvious but how would I go about supporting design time property support for more complex type?

A: 

Unfortunately it is not blindingly obvious (at least it wasn't to me), but I managed to solve several designer challenges, including support for unfolding sub-classes (properties that are objects with properties), forms for aiding the designer experience and so forth.

Could you describe, in more detail, what it is you want to accomplish?

Miros
I was initially going to start trivial, with something that allows spherical co-ordinates to be stored and edited in the properties window, in a similar manner to how the `Point` class does it
Rowland Shaw