Skip to content

Commit

Permalink
Example code for NavigationView
Browse files Browse the repository at this point in the history
  • Loading branch information
NotYoojun committed Nov 26, 2024
1 parent c0426da commit 277afe1
Show file tree
Hide file tree
Showing 2 changed files with 336 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
Title="NavigationView Page"
d:DesignWidth="1206"
mc:Ignorable="d">
mc:Ignorable="d" Loaded="Page_Loaded">
<ui:Page.Resources>
<converters:MenuItemTemplateSelector x:Key="selector">
<converters:MenuItemTemplateSelector.ItemTemplate>
Expand Down Expand Up @@ -424,7 +424,7 @@
<TextBox
x:Name="headerText"
AutomationProperties.Name="Header property"
Text="Header" />
Text="Header" TextChanged="headerText_TextChanged"/>
<CheckBox
x:Name="headerCheck"
Click="headerCheck_Click"
Expand All @@ -434,7 +434,7 @@
<TextBox
x:Name="paneText"
AutomationProperties.Name="PaneTitle property"
Text="Pane Title" />
Text="Pane Title" TextChanged="paneText_TextChanged"/>
<CheckBox
x:Name="panemc_Check"
Click="panemc_Check_Click"
Expand Down
Loading

0 comments on commit 277afe1

Please sign in to comment.