diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/App.xaml.cs b/RestaurantManager/RestaurantManager.UniversalWindows/App.xaml.cs
index b03a0c7..bded7d4 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/App.xaml.cs
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/App.xaml.cs
@@ -38,14 +38,7 @@ public App()
///
/// Details about the launch request and process.
protected override void OnLaunched(LaunchActivatedEventArgs e)
- {
- #if DEBUG
- if (System.Diagnostics.Debugger.IsAttached)
- {
- this.DebugSettings.EnableFrameRateCounter = true;
- }
- #endif
-
+ {
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml b/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml
index 8e96013..897890e 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml
@@ -6,17 +6,24 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml.cs b/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml.cs
index 6c11731..62f3307 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml.cs
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/ExpeditePage.xaml.cs
@@ -26,5 +26,10 @@ public ExpeditePage()
{
this.InitializeComponent();
}
+
+ private void btnHome_Click(object sender, RoutedEventArgs e)
+ {
+ Frame.Navigate(typeof(MainPage));
+ }
}
}
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml b/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml
index 633c329..1960993 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml
@@ -32,21 +32,21 @@
Text="Internal Test Version"
TextWrapping="Wrap"
VerticalAlignment="Bottom" />
-
-
+
+ HorizontalAlignment="Center"
+ VerticalAlignment="Center"
+ Click="SubmitOrder_Click" />
\ No newline at end of file
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml.cs b/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml.cs
index b4b38c3..0ee8997 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml.cs
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/MainPage.xaml.cs
@@ -26,5 +26,15 @@ public MainPage()
{
this.InitializeComponent();
}
+
+ private void OrdersView_Click(object sender, RoutedEventArgs e)
+ {
+ Frame.Navigate(typeof(ExpeditePage));
+ }
+
+ private void SubmitOrder_Click(object sender, RoutedEventArgs e)
+ {
+ Frame.Navigate(typeof(OrderPage));
+ }
}
}
\ No newline at end of file
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml b/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml
index 5442046..365bdf7 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml
@@ -6,6 +6,13 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
+
+
+
+
+
+
+
@@ -19,6 +26,10 @@
+
-
+
-
\ No newline at end of file
diff --git a/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml.cs b/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml.cs
index 3b55183..9b5da39 100644
--- a/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml.cs
+++ b/RestaurantManager/RestaurantManager.UniversalWindows/OrderPage.xaml.cs
@@ -26,5 +26,10 @@ public OrderPage()
{
this.InitializeComponent();
}
+
+ private void btnHome_Click(object sender, RoutedEventArgs e)
+ {
+ Frame.Navigate(typeof(MainPage));
+ }
}
-}
+}
\ No newline at end of file