Skip to content

Instantly share code, notes, and snippets.

@SmashBrando
Created August 13, 2021 15:48
Show Gist options
  • Save SmashBrando/b8b2fe290fd70e5e03b9cd47e0439ed7 to your computer and use it in GitHub Desktop.
Save SmashBrando/b8b2fe290fd70e5e03b9cd47e0439ed7 to your computer and use it in GitHub Desktop.
<HierarchicalDataTemplate x:Key="CheckBoxTreeViewItemTemplate" ItemsSource="{Binding Items, Mode=OneWay}" >
<StackPanel Orientation="Horizontal">
<Image Margin="2,0" Source="{Binding ImageSource, Mode=TwoWay}" />
<CheckBox Focusable="False" IsChecked="{Binding IsChecked}" VerticalAlignment="Center"
<span style="background-color: #ffff00;">Command="{Binding CheckedEvent}"</span>/>
<ContentPresenter Content="{Binding Text, Mode=TwoWay}" Margin="2,0" />
</StackPanel>
</HierarchicalDataTemplate>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment