diff options
author | marcinzelent <marcin@zelent.net> | 2017-05-27 15:03:13 +0200 |
---|---|---|
committer | marcinzelent <marcin@zelent.net> | 2017-05-27 15:03:13 +0200 |
commit | 7050477dd8e2b68ff5183fc99b034fcc7cfa4429 (patch) | |
tree | 39b69d676d1ce70c6f38f333bf62f005cbcdbd07 | |
parent | c74362cc4d856ec7ee35d7681aa4ea848edfc265 (diff) |
Added empty pages for future use.
8 files changed, 155 insertions, 0 deletions
diff --git a/ApartmentManager/ApartmentManager/View/BmChangesPage.xaml b/ApartmentManager/ApartmentManager/View/BmChangesPage.xaml new file mode 100644 index 0000000..6914288 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmChangesPage.xaml @@ -0,0 +1,11 @@ +<Page + x:Class="ApartmentManager.View.BmChangesPage" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="using:ApartmentManager.View" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + mc:Ignorable="d"> + + <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> +</Page> diff --git a/ApartmentManager/ApartmentManager/View/BmChangesPage.xaml.cs b/ApartmentManager/ApartmentManager/View/BmChangesPage.xaml.cs new file mode 100644 index 0000000..c729da8 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmChangesPage.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 +{ + /// <summary> + /// An empty page that can be used on its own or navigated to within a Frame. + /// </summary> + public sealed partial class BmChangesPage : Page + { + public BmChangesPage() + { + this.InitializeComponent(); + } + } +} diff --git a/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.xaml b/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.xaml new file mode 100644 index 0000000..eed56f1 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.xaml @@ -0,0 +1,11 @@ +<Page + x:Class="ApartmentManager.View.BmContractOwnersPage" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="using:ApartmentManager.View" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + mc:Ignorable="d"> + + <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> +</Page> diff --git a/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.xaml.cs b/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.xaml.cs new file mode 100644 index 0000000..389ee44 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmContractOwnersPage.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 +{ + /// <summary> + /// An empty page that can be used on its own or navigated to within a Frame. + /// </summary> + public sealed partial class BmContractOwnersPage : Page + { + public BmContractOwnersPage() + { + this.InitializeComponent(); + } + } +} diff --git a/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml b/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml new file mode 100644 index 0000000..5cc0506 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml @@ -0,0 +1,16 @@ +<Page + x:Class="ApartmentManager.View.BmDefectsPage" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="using:ApartmentManager.View" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:vm="using:ApartmentManager.ViewModel" + mc:Ignorable="d"> + + <Page.DataContext> + <vm:BmViewModel /> + </Page.DataContext> + + <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> +</Page> diff --git a/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml.cs b/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml.cs new file mode 100644 index 0000000..638cc3d --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmDefectsPage.xaml.cs @@ -0,0 +1,16 @@ +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; + +namespace ApartmentManager.View +{ + /// <summary> + /// Page for managing defects. + /// </summary> + public sealed partial class BmDefectsPage : Page + { + public BmDefectsPage() + { + InitializeComponent(); + } + } +} diff --git a/ApartmentManager/ApartmentManager/View/BmResidentsPage.xaml b/ApartmentManager/ApartmentManager/View/BmResidentsPage.xaml new file mode 100644 index 0000000..7607d86 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmResidentsPage.xaml @@ -0,0 +1,11 @@ +<Page + x:Class="ApartmentManager.View.BmResidentsPage" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="using:ApartmentManager.View" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + mc:Ignorable="d"> + + <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> +</Page> diff --git a/ApartmentManager/ApartmentManager/View/BmResidentsPage.xaml.cs b/ApartmentManager/ApartmentManager/View/BmResidentsPage.xaml.cs new file mode 100644 index 0000000..2a43996 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/BmResidentsPage.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 +{ + /// <summary> + /// An empty page that can be used on its own or navigated to within a Frame. + /// </summary> + public sealed partial class BmResidentsPage : Page + { + public BmResidentsPage() + { + this.InitializeComponent(); + } + } +} |