45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<Window x:Class="CSI_F1021.MainWindow"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:vm="clr-namespace:CSI_F1021.ViewModel"
|
|
xmlns:Menu="clr-namespace:CSI_F1021.Utilities"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow"
|
|
AllowsTransparency="True"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None"
|
|
Height="450"
|
|
Width="800"
|
|
Background="Transparent">
|
|
<Window.DataContext>
|
|
<vm:NavigationVM />
|
|
</Window.DataContext>
|
|
<Grid>
|
|
<Border Background="#212529" CornerRadius="10"/>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="228" />
|
|
<ColumnDefinition Width="622" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid HorizontalAlignment="Left"
|
|
Width='228'>
|
|
<Border Background="#272B2F" />
|
|
<StackPanel Height="400" Width="228">
|
|
<Menu:Btn Style="{StaticResource BtnStyle}"
|
|
Command="{Binding HomeCommand}"
|
|
IsChecked="True">
|
|
<Grid>
|
|
<Image Source="/Images/home_page.png"/>
|
|
<TextBlock Text="Home"
|
|
Style="{StaticResource Text_Style}" />
|
|
</Grid>
|
|
</Menu:Btn>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|