Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created May 5, 2018 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannagel/55df8c1eea4a41dc318ea94b9fb625b6 to your computer and use it in GitHub Desktop.
Save christiannagel/55df8c1eea4a41dc318ea94b9fb625b6 to your computer and use it in GitHub Desktop.
Using the TreeView control
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TreeView Style="{StaticResource TreeViewStyle1}" x:Name="treeView1"
ItemInvoked="{x:Bind OnSelectionChanged, Mode=OneTime}"
SelectionMode="Single">
</TreeView>
<local:CultureDetailUC Grid.Column="1" CultureData="{x:Bind ViewModel.SelectedCulture, Mode=OneWay}" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment