oop_NFS_Andreas/WPFClient/WPFClient/MainWindow.xaml

24 lines
1.5 KiB
XML

<Window x:Class="WPFClient.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:WPFClient"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<ComboBox x:Name="DropDownOrigin" HorizontalAlignment="Left" Margin="64,72,0,0" VerticalAlignment="Top" Width="120" SelectionChanged="DropDownOrigin_SelectionChanged"/>
<ComboBox x:Name="DropDownDestination" HorizontalAlignment="Left" Margin="64,112,0,0" VerticalAlignment="Top" Width="120"/>
<ListView x:Name="ListSpecialOffers" HorizontalAlignment="Left" Height="296" Margin="223,72,0,0" VerticalAlignment="Top" Width="241" SelectionChanged="ListSpecialOffers_SelectionChanged">
<ListView.View>
<GridView>
<GridViewColumn/>
</GridView>
</ListView.View>
</ListView>
<Button x:Name="ButtonReserve" Content="Reserve Offert" HorizontalAlignment="Left" Margin="504,79,0,0" VerticalAlignment="Top" Width="75" Click="ButtonReserve_Click"/>
<Button x:Name="ButtonBook" Content="Book Offer" HorizontalAlignment="Left" Margin="504,119,0,0" VerticalAlignment="Top" Width="75" Click="ButtonBook_Click"/>
</Grid>
</Window>