11 changed files with 33 additions and 16 deletions
@ -1,7 +1,8 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.BusyIndicator.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.BusyIndicator.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:local="clr-namespace:Samples.Modules.BusyIndicator" |
||||
Header="BusyIndicator" |
Header="BusyIndicator" |
||||
Tag="Samples.Modules.BusyIndicator.HomeView"> |
Tag="{x:Type local:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,9 +1,10 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.Button.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.Button.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="Button Controls" Tag="Samples.Modules.Button.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.Button.Views" |
||||
|
Header="Button Controls" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
<TreeViewItem Header="ButtonSpinner" Tag="Samples.Modules.Button.Views.ButtonSpinnerView"/> |
<TreeViewItem Header="ButtonSpinner" Tag="{x:Type views:ButtonSpinnerView}"/> |
||||
<TreeViewItem Header="SplitButton" Tag="Samples.Modules.Button.Views.SplitButtonView"/> |
<TreeViewItem Header="SplitButton" Tag="{x:Type views:SplitButtonView}"/> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,9 +1,10 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.Calculator.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.Calculator.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="Calculator Controls" Tag="Samples.Modules.Calculator.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.Calculator.Views" |
||||
|
Header="Calculator Controls" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
<TreeViewItem Header="Calculator" Tag="Samples.Modules.Calculator.Views.CalculatorView"/> |
<TreeViewItem Header="Calculator" Tag="{x:Type views:CalculatorView}"/> |
||||
<TreeViewItem Header="CalculatorUpDown" Tag="Samples.Modules.Calculator.Views.CalculatorUpDownView"/> |
<TreeViewItem Header="CalculatorUpDown" Tag="{x:Type views:CalculatorUpDownView}"/> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.ChildWindow.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.ChildWindow.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="ChildWindow" Tag="Samples.Modules.ChildWindow.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.ChildWindow.Views" |
||||
|
Header="ChildWindow" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.Color.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.Color.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="Color" Tag="Samples.Modules.Color.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.Color.Views" |
||||
|
Header="Color" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.DateTime.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.DateTime.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="DateTime" Tag="Samples.Modules.DateTime.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.DateTime.Views" |
||||
|
Header="DateTime" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.Numeric.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.Numeric.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="Numeric" Tag="Samples.Modules.Numeric.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.Numeric.Views" |
||||
|
Header="Numeric" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.PropertyGrid.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.PropertyGrid.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="ChildWindow" Tag="Samples.Modules.PropertyGrid.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.PropertyGrid.Views" |
||||
|
Header="ChildWindow" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
@ -1,6 +1,7 @@ |
|||||
<TreeViewItem x:Class="Samples.Modules.Text.Views.NavigationView" |
<TreeViewItem x:Class="Samples.Modules.Text.Views.NavigationView" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
Header="Text" Tag="Samples.Modules.Text.Views.HomeView"> |
xmlns:views="clr-namespace:Samples.Modules.Text.Views" |
||||
|
Header="Text" Tag="{x:Type views:HomeView}"> |
||||
|
|
||||
</TreeViewItem> |
</TreeViewItem> |
||||
|
|||||
Loading…
Reference in new issue