43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<Window x:Class="FahrzeugProjekt.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:FahrzeugProjekt"
|
|
mc:Ignorable="d"
|
|
Title="Fahrzeug Verwaltung" Height="450" Width="800"
|
|
WindowStartupLocation="CenterScreen">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Kopfzeile -->
|
|
<TextBlock Grid.Row="0" Text="Fahrzeug Verwaltungssystem"
|
|
FontSize="24" FontWeight="Bold"
|
|
HorizontalAlignment="Center"
|
|
Margin="20"/>
|
|
|
|
<!-- main -->
|
|
<StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Text="Wählen Sie eine Aktion:" FontSize="16"
|
|
HorizontalAlignment="Center" Margin="0,0,0,30"/>
|
|
|
|
<Button Name="FahAnzeigen" Content="Fahrzeuge Anzeigen"
|
|
Width="180" Height="50" Margin="10"
|
|
FontSize="14" Click="Anzeigen"/>
|
|
|
|
<Button Name="FahEintragen" Content="Neues Fahrzeug Eintragen"
|
|
Width="180" Height="50" Margin="10"
|
|
FontSize="14" Click="Eintragen"/>
|
|
</StackPanel>
|
|
|
|
<!-- Fußzeile -->
|
|
<TextBlock Grid.Row="2" Text="Firmen Fahrzeug Verwaltung"
|
|
HorizontalAlignment="Center"
|
|
Foreground="Gray" Margin="10"/>
|
|
</Grid>
|
|
</Window> |