From 5f607a5329a9ed7657a313fa32f651967d66ad2c Mon Sep 17 00:00:00 2001 From: Donatas Adamonis Date: Fri, 28 Apr 2017 15:37:56 +0200 Subject: LoginPage --- .../ApartmentManager/ApartmentManager.csproj | 10 ++++++-- .../ApartmentManager/View/LoginPage.xaml | 13 ++++++++++ .../ApartmentManager/View/LoginPage.xaml.cs | 30 ++++++++++++++++++++++ 3 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 ApartmentManager/ApartmentManager/View/LoginPage.xaml create mode 100644 ApartmentManager/ApartmentManager/View/LoginPage.xaml.cs diff --git a/ApartmentManager/ApartmentManager/ApartmentManager.csproj b/ApartmentManager/ApartmentManager/ApartmentManager.csproj index 7ea4d2a..5a65b17 100644 --- a/ApartmentManager/ApartmentManager/ApartmentManager.csproj +++ b/ApartmentManager/ApartmentManager/ApartmentManager.csproj @@ -11,7 +11,7 @@ ApartmentManager en-US UAP - 10.0.15063.0 + 10.0.14393.0 10.0.10586.0 14 512 @@ -102,6 +102,9 @@ + + LoginPage.xaml + @@ -128,6 +131,10 @@ MSBuild:Compile Designer + + Designer + MSBuild:Compile + @@ -137,7 +144,6 @@ - 14.0 diff --git a/ApartmentManager/ApartmentManager/View/LoginPage.xaml b/ApartmentManager/ApartmentManager/View/LoginPage.xaml new file mode 100644 index 0000000..aa2b0d7 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/LoginPage.xaml @@ -0,0 +1,13 @@ + + + + + + diff --git a/ApartmentManager/ApartmentManager/View/LoginPage.xaml.cs b/ApartmentManager/ApartmentManager/View/LoginPage.xaml.cs new file mode 100644 index 0000000..246ec8e --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/LoginPage.xaml.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238 + +namespace ApartmentManager.View +{ + /// + /// An empty page that can be used on its own or navigated to within a Frame. + /// + public sealed partial class LoginPage : Page + { + public LoginPage() + { + this.InitializeComponent(); + } + } +} -- cgit v1.2.3