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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can keep datachart as a named resource in your DockPanel resources and use static resource binding to command parameter. Then use ContentControl to host it.

like this...

    <DockPanel>
            <DockPanel.Resources>
                 <DataChart x:Key="MyDataChart">
                 </DataChart>
            </DockPanel.Resources>
            <DataGrid>
                   <DataGrid.Resources>
                           <CheckBox 
                                 Command="{Binding Command}"
                                 CommandParameter="{StaticResource MyDataChart}" />
                   </DataGrid.Resources>
            </DataGrid>
           <StackPanel>
                 <ChartLegend>
                 </ChartLegend>
                 <ContentControl Content="{StaticResource MyDataChart}"/>
           </stackPanel>
     </DockPanel>

Hoping that you wont use same MyDataChart to host to another area (as that would result in "visual tree parent disconnect" error).

Although I must ask you this... why is there a lonely CheckBox in your DataGrid resources?

Also your's and mine solution breaks MVVM because we are supplying a UI control (Chart control) to a View Model.

link|improve this answer
This is a major drawback in XamDataChart that ItemSource cannot be updated through Binding, as it's a ReadOnly Property. It can only be updated through Code with UI Control. – Varun Jain Sep 19 '11 at 10:11
But did this work? – AngelWPF Sep 19 '11 at 10:14
working on it only. Will Update you. – Varun Jain Sep 19 '11 at 10:16
oh and one more thing [:(] ... I am not sure if CheckBox's Command / CommandParameter property works. Its deprecated somehow. social.msdn.microsoft.com/Forums/en-US/wpf/thread/… – AngelWPF Sep 19 '11 at 10:18
Thanks for the suggestion. I know this and I'm following this pattern only. This code was just a mere representation. – Varun Jain Sep 19 '11 at 10:49
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.