diff --git a/.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2 b/.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2
index 0b7bc87..be66e0f 100644
Binary files a/.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2 and b/.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/Server Dashboard/v16/.suo b/.vs/Server Dashboard/v16/.suo
index 006ec3e..67dfa8c 100644
Binary files a/.vs/Server Dashboard/v16/.suo and b/.vs/Server Dashboard/v16/.suo differ
diff --git a/Server Dashboard/App.xaml b/Server Dashboard/App.xaml
index 184a8a1..36df237 100644
--- a/Server Dashboard/App.xaml
+++ b/Server Dashboard/App.xaml
@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Server_Dashboard"
- StartupUri="MainWindow.xaml">
+ StartupUri="LoginWindow.xaml">
@@ -51,11 +51,6 @@
-
-
-
+
+
diff --git a/Server Dashboard/LoginWindow.xaml b/Server Dashboard/LoginWindow.xaml
new file mode 100644
index 0000000..fe4b101
--- /dev/null
+++ b/Server Dashboard/LoginWindow.xaml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Server Dashboard/LoginWindow.xaml.cs b/Server Dashboard/LoginWindow.xaml.cs
new file mode 100644
index 0000000..2ac64c4
--- /dev/null
+++ b/Server Dashboard/LoginWindow.xaml.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Windows;
+using System.Windows.Input;
+
+namespace Server_Dashboard {
+ ///
+ /// Interaction logic for LoginWindow.xaml
+ ///
+ public partial class LoginWindow : Window {
+ public LoginWindow() {
+ InitializeComponent();
+ DataContext = new LoginViewModel();
+ }
+ }
+}
diff --git a/Server Dashboard/MainWindow.xaml b/Server Dashboard/MainWindow.xaml
deleted file mode 100644
index 40e8bcf..0000000
--- a/Server Dashboard/MainWindow.xaml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Server Dashboard/MainWindow.xaml.cs b/Server Dashboard/MainWindow.xaml.cs
deleted file mode 100644
index d457891..0000000
--- a/Server Dashboard/MainWindow.xaml.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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_Dashboard {
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window {
- public MainWindow() {
- InitializeComponent();
- }
- }
-}
diff --git a/Server Dashboard/Server Dashboard.csproj b/Server Dashboard/Server Dashboard.csproj
index 17eb043..716c551 100644
--- a/Server Dashboard/Server Dashboard.csproj
+++ b/Server Dashboard/Server Dashboard.csproj
@@ -13,10 +13,12 @@
+
+
diff --git a/Server Dashboard/Server Dashboard.csproj.user b/Server Dashboard/Server Dashboard.csproj.user
index 644b0a6..7011a87 100644
--- a/Server Dashboard/Server Dashboard.csproj.user
+++ b/Server Dashboard/Server Dashboard.csproj.user
@@ -7,7 +7,7 @@
-
+
Designer
diff --git a/Server Dashboard/ViewModels/LoginViewModel.cs b/Server Dashboard/ViewModels/LoginViewModel.cs
new file mode 100644
index 0000000..0678607
--- /dev/null
+++ b/Server Dashboard/ViewModels/LoginViewModel.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Server_Dashboard {
+ class LoginViewModel {
+ private string password;
+
+ public string Password {
+ get { return password; }
+ set { password = value; }
+ }
+
+ }
+}
diff --git a/Server Dashboard/bin/Debug/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll b/Server Dashboard/bin/Debug/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll
new file mode 100644
index 0000000..27fa5ea
Binary files /dev/null and b/Server Dashboard/bin/Debug/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll differ
diff --git a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.deps.json b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.deps.json
index ee4e597..7f956ff 100644
--- a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.deps.json
+++ b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.deps.json
@@ -8,6 +8,7 @@
".NETCoreApp,Version=v3.1": {
"Server Dashboard/1.0.0": {
"dependencies": {
+ "Microsoft.Xaml.Behaviors.Wpf": "1.1.31",
"System.Data.SqlClient": "4.8.2"
},
"runtime": {
@@ -21,6 +22,14 @@
"System.Security.Principal.Windows": "4.7.0"
}
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll": {
+ "assemblyVersion": "1.1.0.0",
+ "fileVersion": "1.1.31.10800"
+ }
+ }
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
@@ -111,6 +120,13 @@
"path": "microsoft.win32.registry/4.7.0",
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
+ "path": "microsoft.xaml.behaviors.wpf/1.1.31",
+ "hashPath": "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512"
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"type": "package",
"serviceable": true,
diff --git a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll
index 19e61ca..bf5758f 100644
Binary files a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll and b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll differ
diff --git a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb
index 2d2ecff..c375322 100644
Binary files a/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb and b/Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/App.baml b/Server Dashboard/obj/Debug/netcoreapp3.1/App.baml
index ed5311c..b50dda5 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/App.baml and b/Server Dashboard/obj/Debug/netcoreapp3.1/App.baml differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs b/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs
index 20d57b9..abbc275 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D03A8BE38EE5AEEDA00BB5AE30E41B585091E1F0"
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "977B0ABA5D21CA80041E32A932A206A161E41C09"
//------------------------------------------------------------------------------
//
// Dieser Code wurde von einem Tool generiert.
@@ -55,7 +55,7 @@ namespace Server_Dashboard {
_contentLoaded = true;
#line 5 "..\..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+ this.StartupUri = new System.Uri("LoginWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs b/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs
index 20d57b9..abbc275 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D03A8BE38EE5AEEDA00BB5AE30E41B585091E1F0"
+#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "977B0ABA5D21CA80041E32A932A206A161E41C09"
//------------------------------------------------------------------------------
//
// Dieser Code wurde von einem Tool generiert.
@@ -55,7 +55,7 @@ namespace Server_Dashboard {
_contentLoaded = true;
#line 5 "..\..\..\App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+ this.StartupUri = new System.Uri("LoginWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.baml b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.baml
new file mode 100644
index 0000000..e02c8b3
Binary files /dev/null and b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.baml differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.cs b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.cs
similarity index 76%
rename from Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.cs
rename to Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.cs
index b1bd53f..b1f7716 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.cs
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3C90DD8C14A9C472B0C23B4B4C5ADAF4EB5BB2A0"
+#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BCF5079F8AC1784378A490329B2D27B8A3CCECFD"
//------------------------------------------------------------------------------
//
// Dieser Code wurde von einem Tool generiert.
@@ -9,6 +9,11 @@
//
//------------------------------------------------------------------------------
+using Microsoft.Xaml.Behaviors;
+using Microsoft.Xaml.Behaviors.Core;
+using Microsoft.Xaml.Behaviors.Input;
+using Microsoft.Xaml.Behaviors.Layout;
+using Microsoft.Xaml.Behaviors.Media;
using Server_Dashboard;
using System;
using System.Diagnostics;
@@ -37,12 +42,12 @@ namespace Server_Dashboard {
///
- /// MainWindow
+ /// LoginWindow
///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+ public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
- #line 34 "..\..\..\MainWindow.xaml"
+ #line 53 "..\..\..\LoginWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox UserName;
@@ -50,7 +55,15 @@ namespace Server_Dashboard {
#line hidden
- #line 49 "..\..\..\MainWindow.xaml"
+ #line 64 "..\..\..\LoginWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock PasswordHint;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\..\LoginWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.PasswordBox Password;
@@ -69,9 +82,9 @@ namespace Server_Dashboard {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/mainwindow.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/loginwindow.xaml", System.UriKind.Relative);
- #line 1 "..\..\..\MainWindow.xaml"
+ #line 1 "..\..\..\LoginWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
@@ -91,6 +104,9 @@ namespace Server_Dashboard {
this.UserName = ((System.Windows.Controls.TextBox)(target));
return;
case 2:
+ this.PasswordHint = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 3:
this.Password = ((System.Windows.Controls.PasswordBox)(target));
return;
}
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.i.cs b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.i.cs
new file mode 100644
index 0000000..b1f7716
--- /dev/null
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/LoginWindow.g.i.cs
@@ -0,0 +1,117 @@
+#pragma checksum "..\..\..\LoginWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BCF5079F8AC1784378A490329B2D27B8A3CCECFD"
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using Microsoft.Xaml.Behaviors;
+using Microsoft.Xaml.Behaviors.Core;
+using Microsoft.Xaml.Behaviors.Input;
+using Microsoft.Xaml.Behaviors.Layout;
+using Microsoft.Xaml.Behaviors.Media;
+using Server_Dashboard;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Controls.Ribbon;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Server_Dashboard {
+
+
+ ///
+ /// LoginWindow
+ ///
+ public partial class LoginWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 53 "..\..\..\LoginWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox UserName;
+
+ #line default
+ #line hidden
+
+
+ #line 64 "..\..\..\LoginWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock PasswordHint;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\..\LoginWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.PasswordBox Password;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/loginwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\..\LoginWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.UserName = ((System.Windows.Controls.TextBox)(target));
+ return;
+ case 2:
+ this.PasswordHint = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 3:
+ this.Password = ((System.Windows.Controls.PasswordBox)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.baml b/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.baml
deleted file mode 100644
index 4c2ff3a..0000000
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.baml and /dev/null differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs b/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
index b1bd53f..57736c6 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
@@ -1,4 +1,4 @@
-#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3C90DD8C14A9C472B0C23B4B4C5ADAF4EB5BB2A0"
+#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CDEE2CA4F2AEFFC91F6C3FEBBD37081502AEA750"
//------------------------------------------------------------------------------
//
// Dieser Code wurde von einem Tool generiert.
@@ -42,7 +42,7 @@ namespace Server_Dashboard {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
- #line 34 "..\..\..\MainWindow.xaml"
+ #line 41 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox UserName;
@@ -50,7 +50,15 @@ namespace Server_Dashboard {
#line hidden
- #line 49 "..\..\..\MainWindow.xaml"
+ #line 52 "..\..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBlock PasswordHint;
+
+ #line default
+ #line hidden
+
+
+ #line 53 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.PasswordBox Password;
@@ -69,7 +77,7 @@ namespace Server_Dashboard {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/mainwindow.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/Server Dashboard;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -88,10 +96,35 @@ namespace Server_Dashboard {
switch (connectionId)
{
case 1:
- this.UserName = ((System.Windows.Controls.TextBox)(target));
+
+ #line 10 "..\..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.DragWindow);
+
+ #line default
+ #line hidden
return;
case 2:
+
+ #line 25 "..\..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CloseButton);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.UserName = ((System.Windows.Controls.TextBox)(target));
+ return;
+ case 4:
+ this.PasswordHint = ((System.Windows.Controls.TextBlock)(target));
+ return;
+ case 5:
this.Password = ((System.Windows.Controls.PasswordBox)(target));
+
+ #line 53 "..\..\..\MainWindow.xaml"
+ this.Password.PasswordChanged += new System.Windows.RoutedEventHandler(this.Password_PasswordChanged);
+
+ #line default
+ #line hidden
return;
}
this._contentLoaded = true;
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.assets.cache b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.assets.cache
index bff2c68..2ef748d 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.assets.cache and b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.assets.cache differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.CoreCompileInputs.cache b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.CoreCompileInputs.cache
index 300b03d..e896e03 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.CoreCompileInputs.cache
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-6699e56d9f98fbf62ee36edf4ef1257f3833dc76
+2d00fed8572cd61607e336f9293a29754e9405e3
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.FileListAbsolute.txt b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.FileListAbsolute.txt
index 677b5ea..0238cfc 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.FileListAbsolute.txt
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csproj.FileListAbsolute.txt
@@ -5,11 +5,9 @@ C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcor
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.dll
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.pdb
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.csprojAssemblyReference.cache
-C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\MainWindow.g.cs
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\App.g.cs
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard_MarkupCompile.cache
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard_MarkupCompile.lref
-C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\MainWindow.baml
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.g.resources
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.AssemblyInfoInputs.cache
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.AssemblyInfo.cs
@@ -25,3 +23,6 @@ C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcor
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\App.baml
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.csproj.CopyComplete
+C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\LoginWindow.g.cs
+C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\LoginWindow.baml
+C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Microsoft.Xaml.Behaviors.dll
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csprojAssemblyReference.cache b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csprojAssemblyReference.cache
index 38b24af..562e24d 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csprojAssemblyReference.cache and b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.csprojAssemblyReference.cache differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.designer.deps.json b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.designer.deps.json
index 2f80c0f..62127b0 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.designer.deps.json
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.designer.deps.json
@@ -33,6 +33,14 @@
}
}
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll": {
+ "assemblyVersion": "1.1.0.0",
+ "fileVersion": "1.1.31.10800"
+ }
+ }
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
@@ -153,6 +161,13 @@
"path": "microsoft.win32.registry/4.7.0",
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
+ "path": "microsoft.xaml.behaviors.wpf/1.1.31",
+ "hashPath": "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512"
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"type": "package",
"serviceable": true,
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll
index 19e61ca..bf5758f 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll and b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.g.resources b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.g.resources
index 58ff6b8..40829a7 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.g.resources and b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.g.resources differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb
index 2d2ecff..c375322 100644
Binary files a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb and b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb differ
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.cache b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.cache
index 74554b3..0d099ba 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.cache
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.cache
@@ -10,11 +10,11 @@ none
false
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
-11407045341
+1-1623698816
-10-2015762917
-193-833620683
-MainWindow.xaml;
+11-1758370662
+194-1159729825
+LoginWindow.xaml;
False
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.cache b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.cache
index 3ecc871..378f031 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.cache
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.cache
@@ -10,11 +10,11 @@ none
false
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
-11407045341
+1-1623698816
-12679877109
-193-833620683
-MainWindow.xaml;
+13937269364
+194-1159729825
+LoginWindow.xaml;
-True
+False
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.lref b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.lref
deleted file mode 100644
index 10c5b94..0000000
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.i.lref
+++ /dev/null
@@ -1,4 +0,0 @@
-
-FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml;;
-FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\MainWindow.xaml;;
-
diff --git a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.lref b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.lref
index 10c5b94..d65a5fc 100644
--- a/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.lref
+++ b/Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard_MarkupCompile.lref
@@ -1,4 +1,4 @@
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml;;
-FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\MainWindow.xaml;;
+FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\LoginWindow.xaml;;
diff --git a/Server Dashboard/obj/Server Dashboard.csproj.nuget.dgspec.json b/Server Dashboard/obj/Server Dashboard.csproj.nuget.dgspec.json
index 54bb8bb..32a0851 100644
--- a/Server Dashboard/obj/Server Dashboard.csproj.nuget.dgspec.json
+++ b/Server Dashboard/obj/Server Dashboard.csproj.nuget.dgspec.json
@@ -44,6 +44,10 @@
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"dependencies": {
+ "Microsoft.Xaml.Behaviors.Wpf": {
+ "target": "Package",
+ "version": "[1.1.31, )"
+ },
"System.Data.SqlClient": {
"target": "Package",
"version": "[4.8.2, )"
diff --git a/Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props b/Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props
index 3c4e198..6af21b7 100644
--- a/Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props
+++ b/Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props
@@ -16,4 +16,7 @@
$(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+ C:\Users\Crylia\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.31
+
\ No newline at end of file
diff --git a/Server Dashboard/obj/project.assets.json b/Server Dashboard/obj/project.assets.json
index dcfe250..d8cda0e 100644
--- a/Server Dashboard/obj/project.assets.json
+++ b/Server Dashboard/obj/project.assets.json
@@ -34,6 +34,18 @@
}
}
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll": {}
+ },
+ "frameworkReferences": [
+ "Microsoft.WindowsDesktop.App.WPF"
+ ]
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"type": "package",
"dependencies": {
@@ -198,6 +210,31 @@
"version.txt"
]
},
+ "Microsoft.Xaml.Behaviors.Wpf/1.1.31": {
+ "sha512": "LZpuf82ACZWldmfMuv3CTUMDh3o0xo0uHUaybR5HgqVLDBJJ9RZLykplQ/bTJd0/VDt3EhD4iDgUgbdIUAM+Kg==",
+ "type": "package",
+ "path": "microsoft.xaml.behaviors.wpf/1.1.31",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Design/Microsoft.Xaml.Behaviors.Design.dll",
+ "lib/net45/Microsoft.Xaml.Behaviors.dll",
+ "lib/net45/Microsoft.Xaml.Behaviors.pdb",
+ "lib/net45/Microsoft.Xaml.Behaviors.xml",
+ "lib/net5.0-windows7.0/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
+ "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll",
+ "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.pdb",
+ "lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.xml",
+ "lib/netcoreapp3.1/Design/Microsoft.Xaml.Behaviors.DesignTools.dll",
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.dll",
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.pdb",
+ "lib/netcoreapp3.1/Microsoft.Xaml.Behaviors.xml",
+ "microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
+ "microsoft.xaml.behaviors.wpf.nuspec",
+ "tools/Install.ps1"
+ ]
+ },
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
"sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
"type": "package",
@@ -450,6 +487,7 @@
},
"projectFileDependencyGroups": {
".NETCoreApp,Version=v3.1": [
+ "Microsoft.Xaml.Behaviors.Wpf >= 1.1.31",
"System.Data.SqlClient >= 4.8.2"
]
},
@@ -497,6 +535,10 @@
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"dependencies": {
+ "Microsoft.Xaml.Behaviors.Wpf": {
+ "target": "Package",
+ "version": "[1.1.31, )"
+ },
"System.Data.SqlClient": {
"target": "Package",
"version": "[4.8.2, )"
diff --git a/Server Dashboard/obj/project.nuget.cache b/Server Dashboard/obj/project.nuget.cache
index 56247bd..281c966 100644
--- a/Server Dashboard/obj/project.nuget.cache
+++ b/Server Dashboard/obj/project.nuget.cache
@@ -1,11 +1,12 @@
{
"version": 2,
- "dgSpecHash": "Ys8lDS/3T/6A/sckiwSOsrsN0Lv8FKN7haYCcS3mkpDpqXsorYgNFm3xwecHcRSPPhR8+xRgpeJ1c3ShYikNbg==",
+ "dgSpecHash": "CYGOe4mBfiMKQ4BaJySOksOWUEXHi442SEA4/Rkjp0Q8nuhKaogz392dgxLCqtFUcIOrmTAgtPjbLUjOWSV4Og==",
"success": true,
"projectFilePath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
"expectedPackageFiles": [
"C:\\Users\\Crylia\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"C:\\Users\\Crylia\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "C:\\Users\\Crylia\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.31\\microsoft.xaml.behaviors.wpf.1.1.31.nupkg.sha512",
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",