Silverlight TreeView issue: Cannot set a CheckBox to IsCheck = true inside a TreeView
Posted by: Al Pascual,
on 18 Apr 2009 |
View original | Bookmarked: 0 time(s)
This are the steps to reproduce the problem, as you can see in the template the bindings are TwoWay still mmanually I cannot change the check box after the controls are bound. The template is pretty simple, 2 levels with the same information, an image, a checkbox and a label. <UserControl.Resources>
<common:HierarchicalDataTemplate x:Key="ChildrenTemplate" ItemsSource="{Binding Children, Mode=TwoWay}">
<StackPanel Orientation="Horizontal">
...