diff options
3 files changed, 51 insertions, 2 deletions
| 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 @@      <AssemblyName>ApartmentManager</AssemblyName>      <DefaultLanguage>en-US</DefaultLanguage>      <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier> -    <TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.15063.0</TargetPlatformVersion> +    <TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.14393.0</TargetPlatformVersion>      <TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>      <MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>      <FileAlignment>512</FileAlignment> @@ -102,6 +102,9 @@      <Compile Include="Model\Class1.cs" />      <Compile Include="Persistency\Persistency.cs" />      <Compile Include="Properties\AssemblyInfo.cs" /> +    <Compile Include="View\LoginPage.xaml.cs"> +      <DependentUpon>LoginPage.xaml</DependentUpon> +    </Compile>    </ItemGroup>    <ItemGroup>      <AppxManifest Include="Package.appxmanifest"> @@ -128,6 +131,10 @@        <Generator>MSBuild:Compile</Generator>        <SubType>Designer</SubType>      </Page> +    <Page Include="View\LoginPage.xaml"> +      <SubType>Designer</SubType> +      <Generator>MSBuild:Compile</Generator> +    </Page>    </ItemGroup>    <ItemGroup>      <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform"> @@ -137,7 +144,6 @@    <ItemGroup>      <Folder Include="Handler\" />      <Folder Include="ViewModel\" /> -    <Folder Include="View\" />    </ItemGroup>    <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">      <VisualStudioVersion>14.0</VisualStudioVersion> 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 @@ +<Page +    x:Class="ApartmentManager.View.LoginPage" +    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" +    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" +    xmlns:local="using:ApartmentManager.View" +    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" +    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" +    mc:Ignorable="d"> + +    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> + +    </Grid> +</Page> 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 +{ +    /// <summary> +    /// An empty page that can be used on its own or navigated to within a Frame. +    /// </summary> +    public sealed partial class LoginPage : Page +    { +        public LoginPage() +        { +            this.InitializeComponent(); +        } +    } +} |