40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<UserControl
|
|
x:Class="Lattice.IDE.Controls.SolutionExplorerView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:Lattice.IDE.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid Background="{ThemeResource LayerFillColorDefaultBrush}" Padding="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Row="0"
|
|
Text="SOLUTION 'LATTICE' (2026)"
|
|
FontSize="11"
|
|
FontWeight="Bold"
|
|
Opacity="0.6"/>
|
|
|
|
<TreeView Grid.Row="1" Margin="0,10,0,0">
|
|
<TreeView.RootNodes>
|
|
<TreeViewNode Content="Lattice.Core.Docking" IsExpanded="True">
|
|
<TreeViewNode.Children>
|
|
<TreeViewNode Content="Models" />
|
|
<TreeViewNode Content="Engine" />
|
|
</TreeViewNode.Children>
|
|
</TreeViewNode>
|
|
<TreeViewNode Content="Lattice.UI.Docking.WinUI" IsExpanded="True">
|
|
<TreeViewNode.Children>
|
|
<TreeViewNode Content="Controls" />
|
|
<TreeViewNode Content="Themes" />
|
|
</TreeViewNode.Children>
|
|
</TreeViewNode>
|
|
</TreeView.RootNodes>
|
|
</TreeView>
|
|
</Grid>
|
|
</UserControl> |