Created
August 13, 2021 15:48
-
-
Save SmashBrando/b8b2fe290fd70e5e03b9cd47e0439ed7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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