63 lines
2.5 KiB
XML
63 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<UserControl
|
|
x:Class="Ghost.Editor.Views.Controls.Hierarchy"
|
|
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:local="using:Ghost.Editor.Views.Controls"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid
|
|
Grid.Row="0"
|
|
Height="40"
|
|
Padding="8,8,8,4"
|
|
Background="{ThemeResource CardBackgroundFillColorSecondaryBrush}"
|
|
BorderBrush="{ThemeResource DividerStrokeColorDefaultBrush}"
|
|
BorderThickness="0,0,0,1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<AutoSuggestBox
|
|
Grid.Column="0"
|
|
PlaceholderText="Search"
|
|
QueryIcon="Find" />
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
|
<AppBarSeparator />
|
|
<Button Style="{ThemeResource ToolbarButton}">
|
|
<FontIcon FontSize="{StaticResource ToolbarIconSize}" Glyph="" />
|
|
</Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<Border Grid.Row="1" Padding="4">
|
|
<ListView>
|
|
<StackPanel Orientation="Horizontal" Spacing="4">
|
|
<FontIcon FontSize="{StaticResource ToolbarIconSize}" Glyph="" />
|
|
<TextBlock Text="Test" />
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Spacing="4">
|
|
<FontIcon FontSize="{StaticResource ToolbarIconSize}" Glyph="" />
|
|
<TextBlock Text="Test" />
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Spacing="4">
|
|
<FontIcon FontSize="{StaticResource ToolbarIconSize}" Glyph="" />
|
|
<TextBlock Text="Test" />
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Spacing="4">
|
|
<FontIcon FontSize="{StaticResource ToolbarIconSize}" Glyph="" />
|
|
<TextBlock Text="Test" />
|
|
</StackPanel>
|
|
</ListView>
|
|
</Border>
|
|
</Grid>
|
|
</UserControl>
|