23 lines
784 B
XML
23 lines
784 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Project_Periodensystem.View.LandingPage">
|
|
<Grid>
|
|
<TextBlock Text="Welcome to the periodic table of elements!"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
FontSize="32"
|
|
Foreground="Red"
|
|
Margin="0,0,0,60"/>
|
|
<Button x:Name="StartButton"
|
|
Content="Start"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="0,60,0,0"
|
|
Width="160"
|
|
Height="50"
|
|
Background="Red"
|
|
Foreground="White"
|
|
Click="StartButton_Click"/>
|
|
</Grid>
|
|
</UserControl>
|