I have XAML tree (just a sample) as follows:
<Window>
<Grid>
<DockPanel>
<DataGrid>
<DataGrid.Resources>
<CheckBox Command="{Binding Command}" CommandParameter="??" />
</DataGrid.Resources>
</DataGrid>
<StackPanel>
<ChartLegend>
</ChartLegend>
<DataChart>
</DataChart>
</stackPanel>
</DockPanel>
</Grid>
</Window>
I want to have DataChart object as CommandParameter on ViewModel from a Command on DataGrid.
My Findings - I'm getting DockPanel object as commandparameter, then I have to apply method FindName("") to get the DataChart. And do modifications further.
But I want the DataChart object directly, to avoid TypeCasting or searching down the Tree.
Thanks,
VJ