You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.2 KiB
22 lines
1.2 KiB
<TreeViewItem x:Class="Samples.Modules.PropertyGrid.Views.NavigationView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:views="clr-namespace:Samples.Modules.PropertyGrid.Views"
|
|
Header="PropertyGrid" Tag="{x:Type views:HomeView}">
|
|
|
|
<TreeViewItem.Resources>
|
|
<Style TargetType="views:NavigationView" BasedOn="{StaticResource {x:Type TreeViewItem}}" />
|
|
</TreeViewItem.Resources>
|
|
|
|
<TreeViewItem Header="Editors">
|
|
<TreeViewItem Header="Default Editors" Tag="{x:Type views:DefaultEditors}" />
|
|
<TreeViewItem Header="Custom Editors" Tag="{x:Type views:CustomEditors}"/>
|
|
</TreeViewItem>
|
|
<TreeViewItem Header="Properties">
|
|
<TreeViewItem Header="Binding to Structs" Tag="{x:Type views:BindingToStructs}"/>
|
|
<TreeViewItem Header="Expandable Properties" Tag="{x:Type views:ExpandableProperties}"/>
|
|
<TreeViewItem Header="Providing an ItemsSource" Tag="{x:Type views:CustomItemsSource}"/>
|
|
<TreeViewItem Header="Specifying Properties" Tag="{x:Type views:SpecifyingProperties}"/>
|
|
</TreeViewItem>
|
|
|
|
</TreeViewItem>
|
|
|