When databinding the Treeview in the Silverlight Toolkit to a data source, how do you then access the TreeViewItem itself to use its IsEnabled property? Or do we lose that functionality and need to support it with any custom hierarchicaldatatemplate?
If I'm databinding to a tree of custom objects, how do I then access an individual TreeViewItem to set IsEnabled? Ideally, I want to do this via databinding. I'm wondering if using ItemContainerStyle would work? I think I'm getting a little confused at the relationship between ItemContainerStyle, ItemTemplate, etc. Obviously the TreeViewItem is created for us when we databind to plain old objects, but how do we set its properties, in particular with binding?