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