I have a data binding between a XamDataGrid and a collection of somewhat complex objects. Lets call the object a MobilePhone. The MobilePhone object has another object called Processor which itself has public properties that I want to show up in the XamDataGrid.
This doesn't seem to work automatically so I thought I would add some field layouts to the XamDataGrid that might be capable of displaying those properties on the Processor. For example I added:
I found the answer I needed.
Simply use an Unbound data field. I was able to just add the following:
<igWPF:UnboundField Name="Processor.Speed" BindingPath="Processor.Speed" Label="CPU Speed" />