<Window x:Class="UWUVCI_AIO_WPF.UI.Windows.TitleKeys"
        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:local="clr-namespace:UWUVCI_AIO_WPF"
       xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
        mc:Ignorable="d"
        Title="MAIN" Height="550" Width="1194.525" WindowStyle="None" WindowStartupLocation="CenterScreen" Foreground="White" MouseDown="MoveWindow" Background="LightGray" ResizeMode="NoResize" Icon="/a.ico">



    <Window.Resources>
        <Storyboard x:Key="MenuOpen">
            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Width)" Storyboard.TargetName="GridMenu">
                <EasingDoubleKeyFrame KeyTime="0" Value="60"/>
                <EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="210"/>
            </DoubleAnimationUsingKeyFrames>
        </Storyboard>
        <Storyboard x:Key="MenuClose">
            <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Width)" Storyboard.TargetName="GridMenu">
                <EasingDoubleKeyFrame KeyTime="0" Value="200"/>
                <EasingDoubleKeyFrame KeyTime="0:0:0.2" Value="60"/>
            </DoubleAnimationUsingKeyFrames>
        </Storyboard>
    </Window.Resources>
    <Window.Triggers>
        <EventTrigger RoutedEvent="ButtonBase.Click" SourceName="ButtonOpenMenu">
            <BeginStoryboard Storyboard="{StaticResource MenuOpen}"/>

        </EventTrigger>
        <EventTrigger RoutedEvent="ButtonBase.Click" SourceName="ButtonCloseMenu">
            <BeginStoryboard Storyboard="{StaticResource MenuClose}"/>

        </EventTrigger>
    </Window.Triggers>

    <Grid DataContext="{StaticResource mvm}">
        <Grid Margin="60,70,0,0">
            <Grid.RowDefinitions>
                <RowDefinition Height="193*"/>
                <RowDefinition Height="47*"/>
            </Grid.RowDefinitions>
            <Frame x:Name="load_frame" NavigationUIVisibility="Hidden" Grid.RowSpan="2"/>
            <TextBlock x:Name="tb" Margin="572,174,563,70" TextWrapping="Wrap" FontSize="20" Height="142" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" Foreground="Black" />
        </Grid>
        <Grid Height="72" VerticalAlignment="Top" Margin="0,-2,0,0">
            <Grid.Background>

                <VisualBrush TileMode="Tile" Viewport="0,0,0.0965,1">
                    <VisualBrush.Visual>
                        <Image Source="/UI/Images/bg maybe wpf.png"></Image>
                    </VisualBrush.Visual>
                </VisualBrush>


            </Grid.Background>
            <TextBlock Name="tbTitleBar" HorizontalAlignment="Left" Margin="61,19,0,0" TextWrapping="Wrap" Text="UWUVCI AIO - TitleKeys" VerticalAlignment="Top" FontSize="25" Width="1075" TextAlignment="Center"/>
        </Grid>
        <Grid x:Name="GridMenu" Width="60" HorizontalAlignment="Left">
            <Grid.Background>
                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                    <GradientStop Color="#5B6EAD" Offset="1"/>
                    <GradientStop Color="#7289DA" Offset="0"/>
                    <GradientStop Color="#6175B7" Offset="0.5"/>
                </LinearGradientBrush>
            </Grid.Background>
            <StackPanel>
                <Grid Height="70">
                    <Button x:Name="ButtonCloseMenu" Width="60" Height="60" Background="{x:Null}" BorderBrush="{x:Null}" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,5,0,0" Visibility="Collapsed" Click="ButtonCloseMenu_Click">
                        <materialDesign:PackIcon Foreground="White" Kind="ArrowLeft" Height="25" Width="25" />
                    </Button>
                    <Button x:Name="ButtonOpenMenu" Width="60" Height="60" Background="{x:Null}" BorderBrush="{x:Null}" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="0,5,0,0" Click="ButtonOpenMenu_Click">
                        <materialDesign:PackIcon Foreground="White" Kind="HamburgerMenu" Height="25" Width="25"/>
                    </Button>
                </Grid>
                <ListView  Foreground="White"  ScrollViewer.HorizontalScrollBarVisibility="Disabled" PreviewMouseLeftButtonUp="ListView_Click">
                    <!--NDS-->
                    <ListViewItem Height="60" x:Name="NDS" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/ds64x64alt4.png"></Image>
                            <TextBlock Text="NDS Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--GBA-->
                    <ListViewItem Height="60" x:Name="GBA" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/gba64alt3.png"></Image>
                            <TextBlock Text="GBA Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--N64-->
                    <ListViewItem Height="60" x:Name="N64"  Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/n64colorlessalt5.png"></Image>
                            <TextBlock Text="N64 Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--SNES-->
                    <ListViewItem Height="60" x:Name="SNES" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/snes64alt2.png"></Image>
                            <TextBlock Text="SNES Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--NES-->
                    <ListViewItem Height="60" x:Name="NES"  Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/nes64alt5.png"></Image>
                            <TextBlock Text="NES Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>

                    <!--TG16-->
                    <ListViewItem Height="60" x:Name="TG16" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/tg16alt.png"></Image>
                            <TextBlock Text="TG16 Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--MSX-->
                    <ListViewItem Height="60" x:Name="MSX" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <Image Source="/UI/Images/msx.png"></Image>
                            <TextBlock Text="MSX Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                    <!--WIIGCN-->
                    <ListViewItem Height="60" x:Name="WIIGCN" Cursor="Hand">
                        <StackPanel Orientation="Horizontal">
                            <materialDesign:PackIcon Foreground="White" Kind="Images" Height="45" Width="45"/>
                            <TextBlock Text="WII/GCN Title Keys" VerticalAlignment="Center" Margin="20 10"/>
                        </StackPanel>
                    </ListViewItem>
                </ListView>

            </StackPanel>
        </Grid>


        <Button Content="Back" HorizontalAlignment="Left" Margin="1096,20,0,0" VerticalAlignment="Top" Width="83"  Height="29" Click="Window_Close"/>

    </Grid>

</Window>