﻿<Window x:Class="{Namespace}.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:local="clr-namespace:{Namespace}"
        mc:Ignorable="d"
        Title="MainWindow" Height="{Height}" Width="{Width}" ResizeMode="NoResize">
    <Grid x:Name="ScreenGrid">
        <Grid x:Name="FramesGrid">
            <StackPanel x:Name="StkPnl" Orientation="Horizontal">
                <StackPanel.Resources>
                    <Style TargetType="Frame">
                        <Setter Property="Margin" Value="0,0,0,0"/>
                        <Setter Property="Width" Value="{Binding ActualWidth, ElementName=FramesGrid}"/>
                        <Setter Property="NavigationUIVisibility" Value="Hidden"/>
                    </Style>
                </StackPanel.Resources>                
            </StackPanel>
        </Grid>
        <Border Height="100" Width="100" CornerRadius="50" HorizontalAlignment="Center" VerticalAlignment="Top" Background="#77CCCCCC">
            <Button Height="100" Width="100" Background="Transparent" BorderThickness="0" Click="BtnUp_Click" HorizontalAlignment="Center" VerticalAlignment="Center">
                <Image Source="icons/ic_up.png"/>
            </Button>
        </Border>
        <Border Height="100" Width="100" CornerRadius="50" HorizontalAlignment="Center" VerticalAlignment="Bottom" Background="#77CCCCCC">
            <Button Height="100" Width="100" Background="Transparent" BorderThickness="0" Click="BtnDown_Click" HorizontalAlignment="Center" VerticalAlignment="Center">
                <Image Source="icons/ic_down.png"/>
            </Button>
        </Border>
    </Grid>
</Window>