<Window x:Class="h_encore_auto.AutoMode"
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:h_encore_auto"
mc:Ignorable="d"
Title="ZUGABE" Height="175.807" Width="512" ResizeMode="NoResize" WindowStyle="None">
<Grid MouseDown="Grid_MouseDown">
<Rectangle Fill="#FFF3F3F3" Stroke="Black"/>
<Rectangle Fill="#FF407FD8" Height="46" Stroke="Black" VerticalAlignment="Top"/>
<Button x:Name="buttonStart" Content="Start!" Margin="23,66,231,22" FontSize="72" FontFamily="Lato" Click="buttonStart_Click"/>
<Button x:Name="buttonClose" Content="X" HorizontalAlignment="Right" Margin="0,7,8,0" VerticalAlignment="Top" Width="30" Height="30" FontSize="20" FontWeight="Bold" Click="buttonClose_Click" Background="#FFEC0909" Foreground="#FFF0F0F0"/>
<Label Content="ZUGABE" HorizontalAlignment="Left" Margin="10,7,0,0" VerticalAlignment="Top" Height="30" Width="83" FontSize="18" FontWeight="Bold" Foreground="White"/>
<ProgressBar x:Name="barWorking" HorizontalAlignment="Left" Height="88" Margin="310,66,0,0" VerticalAlignment="Top" Width="176" IsIndeterminate="True" Visibility="Collapsed"/>
</Grid>
</Window>