diff --git a/DokterApp/Homepage.xaml b/DokterApp/Homepage.xaml
new file mode 100644
index 0000000..3431c04
--- /dev/null
+++ b/DokterApp/Homepage.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/DokterApp/Homepage.xaml.cs b/DokterApp/Homepage.xaml.cs
new file mode 100644
index 0000000..4e94a78
--- /dev/null
+++ b/DokterApp/Homepage.xaml.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+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 DokterApp
+{
+ ///
+ /// Interaction logic for Homepage.xaml
+ ///
+ public partial class Homepage : Page
+ {
+ public Homepage()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/DokterApp/MainWindow.xaml b/DokterApp/MainWindow.xaml
index 5ce5844..d1cf291 100644
--- a/DokterApp/MainWindow.xaml
+++ b/DokterApp/MainWindow.xaml
@@ -5,8 +5,24 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DokterApp"
mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
-
+ WindowState="Maximized"
+ Title="Dokter App" >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DokterApp/MainWindow.xaml.cs b/DokterApp/MainWindow.xaml.cs
index 9215b9b..9bd0003 100644
--- a/DokterApp/MainWindow.xaml.cs
+++ b/DokterApp/MainWindow.xaml.cs
@@ -24,5 +24,17 @@ namespace DokterApp
{
InitializeComponent();
}
+
+
+
+ private void Login_Click(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
+ {
+
+ }
}
}
diff --git a/DokterApp/UserControl.xaml b/DokterApp/UserControl.xaml
new file mode 100644
index 0000000..30020ea
--- /dev/null
+++ b/DokterApp/UserControl.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/DokterApp/UserControl.xaml.cs b/DokterApp/UserControl.xaml.cs
new file mode 100644
index 0000000..228deca
--- /dev/null
+++ b/DokterApp/UserControl.xaml.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+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 DokterApp
+{
+ ///
+ /// Interaction logic for UserControl.xaml
+ ///
+ public partial class UserControl : UserControl
+ {
+ public UserControl()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Server/SaveData.cs b/Server/SaveData.cs
index 0286bde..b26ea9e 100644
--- a/Server/SaveData.cs
+++ b/Server/SaveData.cs
@@ -33,7 +33,7 @@ namespace Server
public void WriteDataRAW(string data)
{
- using (StreamWriter sw = File.AppendText(this.path + "/raw" + filename + ".txt"))
+ using (StreamWriter sw = File.AppendText(this.path + "/rawFiets" + filename + ".txt"))
{
sw.WriteLine(data);
}