26
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Text;
|
|
4 using System.Windows;
|
|
5 using System.Windows.Controls;
|
|
6 using System.Windows.Data;
|
|
7 using System.Windows.Documents;
|
|
8 using System.Windows.Input;
|
|
9 using System.Windows.Media;
|
|
10 using System.Windows.Media.Imaging;
|
|
11 using System.Windows.Navigation;
|
|
12 using System.Windows.Shapes;
|
|
13
|
|
14 namespace Client
|
|
15 {
|
|
16 /// <summary>
|
|
17 /// Interaction logic for MainWindow.xaml
|
|
18 /// </summary>
|
|
19 public partial class MainWindow : Window
|
|
20 {
|
|
21 public MainWindow()
|
|
22 {
|
|
23 InitializeComponent();
|
|
24 }
|
|
25 }
|
|
26 }
|