This repository has been archived on 2025-07-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ZUGABE/h-encore-auto/AutoMode.xaml

14 lines
748 B
Text
Raw Normal View History

2018-07-05 23:30:04 +02:00
<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="AutoMode" Height="512" Width="512" ResizeMode="CanMinimize" Closed="Window_Closed">
<Grid>
<Button x:Name="buttonStart" Content="Start!" Margin="120,109,0,0" Width="266" Height="265" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="72" FontFamily="Lato" Click="buttonStart_Click"/>
</Grid>
</Window>