diff options
3 files changed, 63 insertions, 0 deletions
diff --git a/ApartmentManager/ApartmentManager/ApartmentManager.csproj b/ApartmentManager/ApartmentManager/ApartmentManager.csproj index dbee180..3768365 100644 --- a/ApartmentManager/ApartmentManager/ApartmentManager.csproj +++ b/ApartmentManager/ApartmentManager/ApartmentManager.csproj @@ -113,6 +113,9 @@ <Compile Include="View\LoginPage.xaml.cs"> <DependentUpon>LoginPage.xaml</DependentUpon> </Compile> + <Compile Include="View\PersonalInfoPagexaml.xaml.cs"> + <DependentUpon>PersonalInfoPagexaml.xaml</DependentUpon> + </Compile> </ItemGroup> <ItemGroup> <AppxManifest Include="Package.appxmanifest"> @@ -139,6 +142,10 @@ <SubType>Designer</SubType> <Generator>MSBuild:Compile</Generator> </Page> + <Page Include="View\PersonalInfoPagexaml.xaml"> + <SubType>Designer</SubType> + <Generator>MSBuild:Compile</Generator> + </Page> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform"> diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml new file mode 100644 index 0000000..de41310 --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml @@ -0,0 +1,26 @@ +<Page + x:Class="ApartmentManager.View.PersonalInfoPagexaml" + 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}"> + <StackPanel Margin="50"> + <StackPanel Width="400"> + <TextBlock Margin="0,10,0,10" Text="User Name"></TextBlock> + <TextBox ></TextBox> + <TextBlock Margin="0,10,0,10" Text="Password"></TextBlock> + <TextBox ></TextBox> + <TextBlock Margin="0,10,0,10" Text="Password"></TextBlock> + <TextBox ></TextBox> + </StackPanel> + <StackPanel> + <Button Margin="0,10,0,10" Content="Log In" HorizontalAlignment="Stretch"></Button> + </StackPanel> + </StackPanel> + + </Grid> +</Page> diff --git a/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.xaml.cs new file mode 100644 index 0000000..692570e --- /dev/null +++ b/ApartmentManager/ApartmentManager/View/PersonalInfoPagexaml.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 PersonalInfoPagexaml : Page + { + public PersonalInfoPagexaml() + { + this.InitializeComponent(); + } + } +} |