This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SessionZero-Client/SessionZero/MainWindow.axaml
2025-11-28 20:40:49 -06:00

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="&#xe2c2;"></Label>
<Label Content="Home"></Label>
</StackPanel>
</Button>
<Button HorizontalAlignment="Stretch">
<StackPanel Orientation="Horizontal">
<Label Classes="icon" Content="&#xe26e;"></Label>
<Label Content="Sessions"></Label>
</StackPanel>
</Button>
<Button HorizontalAlignment="Stretch">
<StackPanel Orientation="Horizontal">
<Label Classes="icon" Content="&#xe758;"></Label>
<Label Content="Library"></Label>
</StackPanel>
</Button>
</StackPanel>
<Button Classes="icon-only" Grid.Row="1">
<Label Classes="icon-only" Content="&#xe270;"></Label>
</Button>
</Grid>
</Border>
<Border Grid.Column="1" Margin="15">
<ContentControl Content="tmp"></ContentControl>
</Border>
</Grid>
</Window>