alle fehler korigieren , alles ui ist funktionfähig , muss aber implementiert werden

This commit is contained in:
younes elhaddoury
2026-02-01 00:01:07 +01:00
parent dbcc95d198
commit 13621be669
9 changed files with 304 additions and 67 deletions

View File

@@ -16,15 +16,21 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Border Grid.ColumnSpan="2"
<Border Grid.Row="0"
Grid.ColumnSpan="2"
Background="#FF1E88E5"
Padding="15">
<StackPanel Orientation="Horizontal">
<Ellipse Width="36" Height="36" Fill="White" Margin="0,0,10,0"/>
<TextBlock Text="Flug reservieren"
FontSize="20"
FontWeight="Bold"
Foreground="White"/>
<StackPanel>
<TextBlock Text="Sky Team Airlines"
FontSize="20"
FontWeight="Bold"
Foreground="White"/>
<TextBlock Text="Sichere und komfortable Flüge weltweit"
FontSize="12"
Foreground="White"/>
</StackPanel>
</StackPanel>
</Border>
@@ -74,37 +80,41 @@
<TextBlock Text="Flug suchen"
FontSize="28"
FontWeight="Bold"/>
<TextBlock Text="Wählen Sie Datum und Strecke für Ihre Reservierung"
<TextBlock Text="Datum und Strecke eingeben"
FontSize="16"
Foreground="#666"/>
</StackPanel>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="180"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="180"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="180"/>
</Grid.ColumnDefinitions>
<Border Background="#F5F7FA"
CornerRadius="12"
Padding="30">
<Label Content="Von:"/>
<TextBox Grid.Column="1"/>
<StackPanel Width="350">
<Label Grid.Column="2" Content="Nach:"/>
<TextBox Grid.Column="3"/>
<TextBlock Text="Von"
FontWeight="SemiBold"
Margin="0,0,0,5"/>
<TextBox Height="40" Margin="0,0,0,15"/>
<Label Grid.Column="4" Content="Abflugdatum:"/>
<DatePicker Grid.Column="5"/>
</Grid>
<TextBlock Text="Nach"
FontWeight="SemiBold"
Margin="0,0,0,5"/>
<TextBox Height="40" Margin="0,0,0,15"/>
<Button Content="Flüge anzeigen"
Width="200"
Height="45"
HorizontalAlignment="Right"
Margin="0,30,0,0"
Click="SearchFlights_Click"/>
<TextBlock Text="Abflugdatum"
FontWeight="SemiBold"
Margin="0,0,0,5"/>
<DatePicker Height="40" Margin="0,0,0,25"/>
<Button Content="Flüge suchen"
Height="45"
FontWeight="Bold"
Background="#FF1E88E5"
Foreground="White"
Click="SearchFlights_Click"/>
</StackPanel>
</Border>
</Grid>