113 lines
4.1 KiB
XML
113 lines
4.1 KiB
XML
<Page x:Class="SkyTeam.ReservierungssuchePage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
|
Title="ReservierungssuchePage">
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="180"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border 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>
|
|
</Border>
|
|
|
|
<StackPanel Grid.Row="1"
|
|
Grid.Column="0"
|
|
Background="#FFE3F2FD">
|
|
|
|
<Button Height="50" Margin="5" Click="HomeButton_Click">
|
|
<StackPanel Orientation="Horizontal">
|
|
<iconPacks:PackIconMaterial Kind="Home" Width="20" Margin="0,0,10,0"/>
|
|
<TextBlock Text="Home"/>
|
|
</StackPanel>
|
|
</Button>
|
|
|
|
<Button Height="50" Margin="5" Click="BookingsButton_Click">
|
|
<StackPanel Orientation="Horizontal">
|
|
<iconPacks:PackIconMaterial Kind="Airplane" Width="20" Margin="0,0,10,0"/>
|
|
<TextBlock Text="Meine Buchungen"/>
|
|
</StackPanel>
|
|
</Button>
|
|
|
|
<Button Height="50" Margin="5" Click="SettingsButton_Click">
|
|
<StackPanel Orientation="Horizontal">
|
|
<iconPacks:PackIconMaterial Kind="Cog" Width="20" Margin="0,0,10,0"/>
|
|
<TextBlock Text="Einstellungen"/>
|
|
</StackPanel>
|
|
</Button>
|
|
|
|
<Button Height="50"
|
|
Margin="5"
|
|
Background="#FFEBEB"
|
|
BorderBrush="#FFB71C1C"
|
|
Foreground="#D32F2F"
|
|
FontWeight="Bold"
|
|
Click="LogoutButton_Click">
|
|
<StackPanel Orientation="Horizontal">
|
|
<iconPacks:PackIconMaterial Kind="Logout" Width="20" Margin="0,0,10,0"/>
|
|
<TextBlock Text="Abmelden"/>
|
|
</StackPanel>
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
<Grid Grid.Row="1" Grid.Column="1" Margin="30">
|
|
|
|
<StackPanel Margin="0,0,0,25">
|
|
<TextBlock Text="Flug suchen"
|
|
FontSize="28"
|
|
FontWeight="Bold"/>
|
|
<TextBlock Text="Wählen Sie Datum und Strecke für Ihre Reservierung"
|
|
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>
|
|
|
|
<Label Content="Von:"/>
|
|
<TextBox Grid.Column="1"/>
|
|
|
|
<Label Grid.Column="2" Content="Nach:"/>
|
|
<TextBox Grid.Column="3"/>
|
|
|
|
<Label Grid.Column="4" Content="Abflugdatum:"/>
|
|
<DatePicker Grid.Column="5"/>
|
|
</Grid>
|
|
|
|
<Button Content="Flüge anzeigen"
|
|
Width="200"
|
|
Height="45"
|
|
HorizontalAlignment="Right"
|
|
Margin="0,30,0,0"
|
|
Click="SearchFlights_Click"/>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Page>
|