Skip to content

Instantly share code, notes, and snippets.

@SmashBrando
Created August 13, 2021 15:35
Show Gist options
  • Save SmashBrando/5f20b6d51eee0b125cda97a59c3cc3c8 to your computer and use it in GitHub Desktop.
Save SmashBrando/5f20b6d51eee0b125cda97a59c3cc3c8 to your computer and use it in GitHub Desktop.
HierarchicalDataTemplate
<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"/>
<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