47 lines
2.2 KiB
XML
47 lines
2.2 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="SessionZero.MainWindow"
|
|
Title="SessionZero">
|
|
<Grid Background="{DynamicResource PrimaryBackground}" ColumnDefinitions="Auto, *">
|
|
<Border Padding="10" Background="{DynamicResource PrimaryBackground}" BoxShadow="5 5 20 0 Black">
|
|
<Grid RowDefinitions="*, Auto">
|
|
<StackPanel Spacing="12">
|
|
<Border Padding="10">
|
|
<Svg Path="/Assets/Images/sessionzero-icon.svg" Width="30"></Svg>
|
|
</Border>
|
|
|
|
<Button HorizontalAlignment="Stretch">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Label Classes="icon" Content=""></Label>
|
|
<Label Content="Home"></Label>
|
|
</StackPanel>
|
|
</Button>
|
|
<Button HorizontalAlignment="Stretch">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Label Classes="icon" Content=""></Label>
|
|
<Label Content="Sessions"></Label>
|
|
</StackPanel>
|
|
</Button>
|
|
<Button HorizontalAlignment="Stretch">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Label Classes="icon" Content=""></Label>
|
|
<Label Content="Library"></Label>
|
|
</StackPanel>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
<Button Classes="icon-only" Grid.Row="1">
|
|
<Label Classes="icon-only" Content=""></Label>
|
|
</Button>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border Grid.Column="1" Margin="15">
|
|
<ContentControl Content="tmp"></ContentControl>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|