45 lines
2.2 KiB
XML
45 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<internal:NavigationTabPage
|
|
x:Class="Ghost.Editor.View.Pages.EngineEditor.HierarchyPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:internal="using:Ghost.Editor.Controls"
|
|
xmlns:local="using:Ghost.Editor.View.Pages.EngineEditor"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:sg="using:Ghost.Editor.Core.SceneGraph"
|
|
mc:Ignorable="d">
|
|
|
|
<internal:NavigationTabPage.Resources>
|
|
<DataTemplate x:Key="SceneTemplate" x:DataType="sg:SceneGraphNode">
|
|
<TreeViewItem
|
|
AutomationProperties.Name="{x:Bind Name, Mode=OneWay}"
|
|
Background="{ThemeResource ControlSolidFillColorDefaultBrush}"
|
|
IsExpanded="True"
|
|
ItemsSource="{x:Bind Children, Mode=OneWay}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<FontIcon FontSize="14" Glyph="" />
|
|
<TextBlock Margin="10,0" Text="{x:Bind Name, Mode=OneWay}" />
|
|
</StackPanel>
|
|
</TreeViewItem>
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Key="EntityTemplate" x:DataType="sg:SceneGraphNode">
|
|
<TreeViewItem AutomationProperties.Name="{x:Bind Name, Mode=OneWay}" ItemsSource="{x:Bind Children, Mode=OneWay}">
|
|
<StackPanel Margin="10,0" Orientation="Horizontal">
|
|
<FontIcon FontSize="14" Glyph="" />
|
|
<TextBlock Margin="5,0,0,0" Text="{x:Bind Name, Mode=OneWay}" />
|
|
</StackPanel>
|
|
</TreeViewItem>
|
|
</DataTemplate>
|
|
</internal:NavigationTabPage.Resources>
|
|
|
|
<Grid Padding="4,6" Background="{ThemeResource LayerFillColorDefaultBrush}">
|
|
<!--<TreeView ItemsSource="{x:Bind ViewModel.SceneList}" SelectionChanged="TreeView_SelectionChanged">
|
|
<TreeView.ItemTemplateSelector>
|
|
<local:HierarchyTemplateSector />
|
|
</TreeView.ItemTemplateSelector>
|
|
</TreeView>-->
|
|
</Grid>
|
|
</internal:NavigationTabPage>
|