Property control like in Visual Studio Designer

G

Guest

I could use a property control like the one in Visual Studio shown in
designer mode.
The grouped mode is not absolutely necessary for me - but would be nice to
have.

Anybody know one? - or maybe you can give a hint how to create one?

Thanks
 
M

Michael Nemtsev

Hello Jan,

Start from http://www.codeproject.com/cs/miscctrl/bending_property.asp

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

J> I could use a property control like the one in Visual Studio shown in
J> designer mode.
J> The grouped mode is not absolutely necessary for me - but would be
J> nice to
J> have.
J> Anybody know one? - or maybe you can give a hint how to create one?
J>
J> Thanks
J>
 
L

Larry Smith

Hello Jan,

This article is somewhat outdated now since it relies on
"ICustomTypeDescriptor" (which has really been superceded by
"TypeDescriptionProvider[Attribute]" in 2.0 and later). The op will have an
easier time working with "TypeConverter.GetProperties()" in any case since
it's really more mainstream for this purpose. He'll have to do a lot of
research in any case since the "PropertyGrid" is the most confounding
control in .NET IMO (very difficult to master due to its complexity and a
serious lack of adequate documentation). He might want to start his search
with "PropertyGrid" and "TypeConverter[Attribute]".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top