Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
XamDataGrid hierarchy with checkboxes
posted

I've implemented a hierarchical grid and have used the checkbox sample as a baseline.  The problem I'm having is that each of my headers (n-level) need to call their appropriapte View Model to do the checking/unchecking of their children.

<CheckBox HorizontalAlignment="Center" VerticalAlignment="Center" IsChecked="{Binding ???" />

Each level ViewModel contains a list and a bool field.  I have tried several things but cannot seem to get the right object reference.  

Any ideas or suggestions?

chr15t1an