c762d405cca04e9cf3da0c0b0a4e1ee8548daff7
[GitHub/Stricted/SpeedportHybridControl.git] / SpeedportHybridControl / MainWindow.xaml.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Windows;
7 using System.Windows.Controls;
8 using System.Windows.Data;
9 using System.Windows.Documents;
10 using System.Windows.Input;
11 using System.Windows.Media;
12 using System.Windows.Media.Imaging;
13 using System.Windows.Navigation;
14 using System.Windows.Shapes;
15 using System.ComponentModel;
16 using SpeedportHybridControl.Implementations;
17
18 namespace SpeedportHybridControl {
19 /// <summary>
20 /// Interaction logic for MainWindow.xaml
21 /// </summary>
22 public partial class MainWindow : Window {
23 public MainWindow () {
24 InitializeComponent();
25 }
26
27 private void button_click (object sender, RoutedEventArgs e) {
28 }
29
30 void Window_Closing (object sender, CancelEventArgs e) {
31 }
32
33 public void update_size (object sender, SizeChangedEventArgs e) {
34 }
35 }
36 }