datagrid2 within datagrid1
Hi,
In the following xaml, you see that I am showing the Address field when a row of datagrid is clicked on.
Question:
I have a datagrid2 which I would like to be placed instead of the Address field.
At present I am using the event:
datagrid1_RowDetailsVisibilityChanged to populate datagrid2 for the selected row in datagrid1
How do I replace the address field with the datagrid2 please? Can I place something like <datagrid2></datagrid2> instead of the <TextBlock Text="{}"... ?
Thanks
<data:DataGrid.RowDetailsTemplate>
<DataTemplate>
<Border>
<Border>
<TextBlock Text="{Binding Address}" TextWrapping="Wrap"></TextBlock>
</Border>
</Border>
</DataTemplate>
</data:DataGrid.RowDetailsTemplate>
Re: datagrid2 within datagrid1