//Ignoring property changed notifier, public, ObservableCollection etc for brevity
class Model
{
int X;
MyType T
}
class MyType {
int Z;
I need to bind to something like T.Z in the data grid, How do I do that?
Hello,
For this, you have to use UnboundFields instead of just Fields. You have to set their BindingPath property to T.Z.
Hope this helps.