I am currently using DevExpress grid and want to data-bind the grid to a Dynamic object that does not have properties. I have to assign an object to the ItemsSource property and I am not sure how to achieve what I am trying to do.
Instead it has a dictionary of Key and Values. Example :
Dictionary<string, object>() dict = new...;
dict.Add("Name", "John");
dict.Add("Age", 36);
I would usually think there is an Interface / Abstract class I can implement as a provider for the data binding, such has GetProperties, GetValue(property) and SetValue(property, value) kind of setup.