Projekt_SS25/Project_Periodensystem.View/MainWindow.axaml
2025-04-01 17:02:33 +02:00

21 lines
855 B
XML

<Window xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Project_Periodensystem.View.MainWindow"
Title="Project_Periodensystem.View">
<Grid>
<StackPanel >
<Button Content="Hallo" Foreground="AliceBlue" Background="Black" Margin="12,12,12,12" />
<TextBlock Text="Hallo" Margin="12,12,12,12"/>
<TextBox Background=""/>
<Image VerticalAlignment="Top" HorizontalAlignment="Left" Height="200" Width="80" Margin="12,12,12,12" />
</StackPanel>
</Grid>
</Window>