From 715b12dabe5a1ae57e76338e5c642e9f92463eb3 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Mon, 21 Nov 2016 09:58:53 +0100 Subject: [PATCH] inits a user's profile page --- BookAStar/BookAStar/BookAStar.csproj | 9 +++++++++ .../Pages/UserProfile/UserProfilePage.xaml | 7 +++++++ .../Pages/UserProfile/UserProfilePage.xaml.cs | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml create mode 100644 BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs diff --git a/BookAStar/BookAStar/BookAStar.csproj b/BookAStar/BookAStar/BookAStar.csproj index d51a6088..a686bc5d 100644 --- a/BookAStar/BookAStar/BookAStar.csproj +++ b/BookAStar/BookAStar/BookAStar.csproj @@ -61,6 +61,9 @@ UserFiles.xaml + + UserProfilePage.xaml + @@ -421,6 +424,12 @@ Designer + + + MSBuild:UpdateDesignTimeXaml + Designer + + diff --git a/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml new file mode 100644 index 00000000..b9fc2df2 --- /dev/null +++ b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs new file mode 100644 index 00000000..dba8eda7 --- /dev/null +++ b/BookAStar/BookAStar/Pages/UserProfile/UserProfilePage.xaml.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; + +namespace BookAStar.Pages.UserProfile +{ + public partial class UserProfilePage : ContentPage + { + public UserProfilePage() + { + InitializeComponent(); + } + } +}