vote up 1 vote down star

Hi Guys,

I'm new to C#, long time C++ programmer, im just wondering once initalising a propertygrid using .selectedObjects. Is there a way to get contents of the current values in the propertygrid.

Ben

flag
Can you clarify your question? If you're setting SelectedObject then you have access to the object that the PropertyGrid is modifying, no? – jasonh Jul 23 at 5:08

1 Answer

vote up 0 vote down

PropertyGrid doesn't expose its internals to the consumer.

However, .Net lets you perform "Refelction" to examine the structure (and execute parts of) code, including class properties.

Here is an article that covers the basics of reflection. You can actually see more of the internals with reflection than what the property grid displays.

link|flag

Your Answer

Get an OpenID
or

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