From 27898323659892ab34e12830def3aae9c3f83fb2 Mon Sep 17 00:00:00 2001 From: Donatas Adamonis Date: Fri, 28 Apr 2017 17:46:38 +0200 Subject: personal info page --- .../ApartmentManager/ApartmentManager.csproj | 6 ++--- .../ApartmentManager/View/ApartmentPage.xaml | 2 +- .../ApartmentManager/View/ApartmentPage.xaml.cs | 7 ++++- .../ApartmentManager/View/PersonalInfoPage.xaml | 27 +++++++++++++++++++ .../ApartmentManager/View/PersonalInfoPage.xaml.cs | 30 ++++++++++++++++++++++ .../View/PersonalInfoPagexaml.xaml | 27 ------------------- .../View/PersonalInfoPagexaml.xaml.cs | 30 ---------------------- 7 files changed, 67 insertions(+), 62 deletions(-) create mode 100644 ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml create mode 100644 ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml.cs delete mode 100644 ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml delete mode 100644 ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs diff --git a/ApartmentManager/ApartmentManager/ApartmentManager.csproj b/ApartmentManager/ApartmentManager/ApartmentManager.csproj index d053bdb..240b879 100644 --- a/ApartmentManager/ApartmentManager/ApartmentManager.csproj +++ b/ApartmentManager/ApartmentManager/ApartmentManager.csproj @@ -110,8 +110,8 @@ LoginPage.xaml - - PersonalInfoPagexaml.xaml + + PersonalInfoPage.xaml @@ -143,7 +143,7 @@ Designer MSBuild:Compile - + Designer MSBuild:Compile diff --git a/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml b/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml index da8d7dd..c2a3594 100644 --- a/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml +++ b/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml @@ -19,7 +19,7 @@ + diff --git a/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml.cs b/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml.cs index 32f0079..f977517 100644 --- a/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml.cs +++ b/ApartmentManager/ApartmentManager/View/ApartmentPage.xaml.cs @@ -29,7 +29,12 @@ namespace ApartmentManager.View private void click(object sender, RoutedEventArgs e) { - Frame.Navigate(typeof(ApartmentPlanPage)); + + } + + private void GotoPernalInfoPage(object sender, RoutedEventArgs e) + { + Frame.Navigate(typeof(PersonalInfoPage)); } } } diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml b/ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml new file mode 100644 index 0000000..5e84fcf --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml.cs b/ApartmentManager/ApartmentManager/View/PersonalInfoPage.xaml.cs new file mode 100644 index 0000000..984e8af --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/PersonalInfoPage.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 PersonalInfoPage : Page + { + public PersonalInfoPage() + { + this.InitializeComponent(); + } + } +} diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml deleted file mode 100644 index ca652b3..0000000 --- a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs deleted file mode 100644 index 692570e..0000000 --- a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs +++ /dev/null @@ -1,30 +0,0 @@ -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 PersonalInfoPagexaml : Page - { - public PersonalInfoPagexaml() - { - this.InitializeComponent(); - } - } -} -- cgit v1.2.3