so I have the following definition for a DataGrid control:
<Custom:DataGrid x:Name="dataGrid" ItemsSource="{Binding Units, Mode=Default}" AutoGenerateColumns="False">
and later in the same XAML document I have the following Content control:
<ContentControl Content="{Binding SelectedUnitResults, Mode=TwoWay}"/>
What I would like to do is have the content control bind to the DataGrid's SelectedItem[0].SelectedUnitResults field on the view model (SelectedItem[0] being a ViewModel for a DataTemplate and SelectedUnitResults being a field that is of a type with a DataTemplate binding as well)
Any insight would be appreciated.