Basic MainWindow ui

This commit is contained in:
2025-11-28 20:40:49 -06:00
parent d384fd1d10
commit e1502b21ad
4 changed files with 138 additions and 1 deletions

View File

@@ -5,5 +5,42 @@
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="SessionZero.MainWindow"
Title="SessionZero">
Welcome to Avalonia!
<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>