vote up 0 vote down star

I have a datagrid that I want to pass in a generic collection. On mouseover I want to test if the row has a specific column and return the value.

What I am trying to accomplish is to determine the type of objects in the grid based on the existence of a specific column. For example, if "SerialNo" exists I know the grid is currently holding a collection of Widgets. If "CustomerId" exists I know the grid is currently holding customers.

flag
What do you want to do with the result? Do you mean you want to pass in a collection of Objects, not a strongly typed collection? Are you doing this with by binding to the ItemsSource property? – Michael S. Scherotter Oct 4 at 5:51

1 Answer

vote up 0 vote down

You can test if the row is of a certain type by casting the object and/or using type reflection on object the row is referencing. What are you trying to accomplish?

link|flag
I'm not sure what type of information is going to be stored in the grid. I am hoping to keep the grid from knowing what type of information its holding. – Detroitpro Oct 6 at 0:41

Your Answer

Get an OpenID
or

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