I have a treeview in which i need to set the font of only selected node as bold.. It works fine if the node does not have any children. But in case a node having children is selected, the child nodes are also shown as bold..
Using following XAML:
<TreeView.ItemContainerStyle>
<Style TargetType="TreeViewItem">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="FontWeight" Value="Bold"></Setter>
</Trigger>
</Style.Triggers>
</Style>
</TreeView.ItemContainerStyle>