moved mainwindow to views folder

This commit is contained in:
Sem van der Hoeven
2020-10-12 14:39:09 +02:00
parent fd4b3d179a
commit 6967fb625d
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
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;
namespace Server
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private string ipAddress = "test";
public MainWindow()
{
InitializeComponent();
}
private void ConnectServer(object sender, RoutedEventArgs e)
{
}
}
}