What I\'m trying to do is create a UserControl to which I can pass an Address object. It seems that when I pass Address=\"{Binding Path=Person.Address}\" to the Us
Address=\"{Binding Path=Person.Address}\"
In MainWindow.xaml :
<local:AddressView DataContext="{Binding Path=Person.Address}" />
and then in AddressView.xaml
<TextBox Text="{Binding Path=Summary, Mode=OneWay}" IsReadOnly="True" />
This displays the summary for me.