oop_NFS_Andreas/WPFClient/WPFClient/MainWindow.xaml.cs

42 lines
899 B
C#
Raw Normal View History

2018-08-19 14:31:58 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
2018-08-30 21:15:55 +02:00
using WPFClient.PlattformService;
2018-08-19 14:31:58 +02:00
namespace WPFClient
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
2018-08-30 22:04:47 +02:00
List<City> Cities { get; set; }
2018-08-19 14:31:58 +02:00
public MainWindow()
{
InitializeComponent();
}
2018-08-30 21:15:55 +02:00
private void ButtonReserve_Click(object sender, RoutedEventArgs e)
{
}
private void ButtonBook_Click(object sender, RoutedEventArgs e)
{
}
2018-08-19 14:31:58 +02:00
}
}