Skip to content

Commit

Permalink
week 2
Browse files Browse the repository at this point in the history
  • Loading branch information
keithvis committed Nov 2, 2015
1 parent 41214ba commit 6e532f8
Show file tree
Hide file tree
Showing 590 changed files with 41,860 additions and 0 deletions.
Binary file added RestaurantManager/.vs/RestaurantManager/v14/.suo
Binary file not shown.
40 changes: 40 additions & 0 deletions RestaurantManager/RestaurantManager.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestaurantManager", "RestaurantManager\RestaurantManager.csproj", "{7B51742F-5FC8-4BE6-A876-2D4CE6993851}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|ARM.ActiveCfg = Debug|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|ARM.Build.0 = Debug|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|ARM.Deploy.0 = Debug|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x64.ActiveCfg = Debug|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x64.Build.0 = Debug|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x64.Deploy.0 = Debug|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x86.ActiveCfg = Debug|x86
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x86.Build.0 = Debug|x86
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Debug|x86.Deploy.0 = Debug|x86
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|ARM.ActiveCfg = Release|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|ARM.Build.0 = Release|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|ARM.Deploy.0 = Release|ARM
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x64.ActiveCfg = Release|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x64.Build.0 = Release|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x64.Deploy.0 = Release|x64
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x86.ActiveCfg = Release|x86
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x86.Build.0 = Release|x86
{7B51742F-5FC8-4BE6-A876-2D4CE6993851}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
8 changes: 8 additions & 0 deletions RestaurantManager/RestaurantManager/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Application
x:Class="RestaurantManager.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:RestaurantManager"
RequestedTheme="Light">

</Application>
105 changes: 105 additions & 0 deletions RestaurantManager/RestaurantManager/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
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;

namespace RestaurantManager
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
sealed partial class App : Application
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
}

/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used such as when the application is launched to open a specific file.
/// </summary>
/// <param name="e">Details about the launch request and process.</param>
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,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();

rootFrame.NavigationFailed += OnNavigationFailed;

if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}

// Place the frame in the current Window
Window.Current.Content = rootFrame;
}

if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}

/// <summary>
/// Invoked when Navigation to a certain page fails
/// </summary>
/// <param name="sender">The Frame which failed navigation</param>
/// <param name="e">Details about the navigation failure</param>
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}

/// <summary>
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
/// </summary>
/// <param name="sender">The source of the suspend request.</param>
/// <param name="e">Details about the suspend request.</param>
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: Save application state and stop any background activity
deferral.Complete();
}
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions RestaurantManager/RestaurantManager/ExpeditePage.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Page
x:Class="RestaurantManager.ExpeditePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:RestaurantManager"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="Black">
<Grid.RowDefinitions>
<RowDefinition Height="0.9*"></RowDefinition>
<RowDefinition Height="0.1*"></RowDefinition>

</Grid.RowDefinitions>
<TextBlock x:Name="textBlock" Foreground="White" FontSize="32" HorizontalAlignment="Center" Margin="195,0,175,-8" Grid.Row="1" TextWrapping="Wrap" Text="**Clear all Orders**" VerticalAlignment="Bottom"/>
</Grid>
</Page>
27 changes: 27 additions & 0 deletions RestaurantManager/RestaurantManager/MainPage.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Page
x:Class="RestaurantManager.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:RestaurantManager"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="Black">
<Grid.RowDefinitions>
<RowDefinition Height="0.4*"></RowDefinition>
<RowDefinition Height="0.1*"></RowDefinition>
<RowDefinition Height="0.5*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"></ColumnDefinition>
<ColumnDefinition Width="0.5*"></ColumnDefinition>

</Grid.ColumnDefinitions>
<TextBlock x:Name="textBlock" Foreground="White" FontSize="32" HorizontalAlignment="Center" Margin="164,0,162,0" TextWrapping="Wrap" Text="Restaurant Manager" VerticalAlignment="Bottom" Grid.ColumnSpan="2" Width="314" Height="42"/>
<TextBlock x:Name="textBlock1" Foreground="White" FontSize="32" Grid.Column="1" HorizontalAlignment="Left" Margin="121,82,0,0" Grid.Row="2" TextWrapping="Wrap" Text="**SubmitOrder**" VerticalAlignment="Top"/>
<TextBlock x:Name="textBlock3" Foreground="White" HorizontalAlignment="Center" Margin="257,14,250,0" Grid.Row="1" TextWrapping="Wrap" Text="Internal Test Version" VerticalAlignment="Bottom" Grid.ColumnSpan="2"/>
<!--<Button x:Name="button" Content="**Go to Orders View**" Click="handleclick" Foreground="White" FontSize="32" HorizontalAlignment="Left" Margin="0,72,0,0" Grid.Row="2" VerticalAlignment="Top" Width="320"/>-->
<TextBlock Text="**Go to Orders View**" Foreground="White" FontSize="32" HorizontalAlignment="Left" Margin="0,72,0,0" Grid.Row="2" VerticalAlignment="Top" Width="320" />
</Grid>
</Page>
34 changes: 34 additions & 0 deletions RestaurantManager/RestaurantManager/MainPage.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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 http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409

namespace RestaurantManager
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
//private async void handleclick(object sender,RoutedEventArgs e)
//{
// await new Windows.UI.Popups.MessageDialog("you clicked me").ShowAsync();
//}
}
}
27 changes: 27 additions & 0 deletions RestaurantManager/RestaurantManager/OrderPage.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<Page
x:Class="RestaurantManager.OrderPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:RestaurantManager"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<Grid Background="Black">
<Grid.RowDefinitions>
<RowDefinition Height="0.2*"></RowDefinition>
<RowDefinition Height="0.1*"></RowDefinition>
<RowDefinition Height="0.5*"></RowDefinition>
<RowDefinition Height="0.1*"></RowDefinition>
<RowDefinition Height="0.1*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"></ColumnDefinition>
<ColumnDefinition Width="0.25*"></ColumnDefinition>
<ColumnDefinition Width="0.25*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock x:Name="textBlock" Foreground="White" Grid.Column="1" HorizontalAlignment="Left" Margin="53,6,0,0" Grid.Row="1" TextWrapping="Wrap" Text="Special Requests: Order Items:" VerticalAlignment="Top" Grid.ColumnSpan="2"/>
<TextBlock x:Name="textBlock2" Foreground="White" Grid.Column="1" HorizontalAlignment="Stretch" Margin="97,7,100,9" Grid.Row="4" TextWrapping="Wrap" Text="**Submit Order**" VerticalAlignment="Center" Grid.ColumnSpan="2"/>
<Button x:Name="button" Content="**Add to Order**" Foreground="White" HorizontalAlignment="Center" Margin="149,3,58,13" Grid.Row="4" VerticalAlignment="Center"/>
</Grid>
</Page>
49 changes: 49 additions & 0 deletions RestaurantManager/RestaurantManager/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>

<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap mp">

<Identity
Name="9d3db5d5-727b-4d53-bf9f-0d1850f1439d"
Publisher="CN=keith"
Version="1.0.0.0" />

<mp:PhoneIdentity PhoneProductId="9d3db5d5-727b-4d53-bf9f-0d1850f1439d" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

<Properties>
<DisplayName>RestaurantManager</DisplayName>
<PublisherDisplayName>keith</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate"/>
</Resources>

<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="RestaurantManager.App">
<uap:VisualElements
DisplayName="RestaurantManager"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="RestaurantManager"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>

<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>
29 changes: 29 additions & 0 deletions RestaurantManager/RestaurantManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RestaurantManager")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("RestaurantManager")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
31 changes: 31 additions & 0 deletions RestaurantManager/RestaurantManager/Properties/Default.rd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!--
This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most
developers. However, you can modify these parameters to modify the behavior of the .NET Native
optimizer.
Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919
To fully enable reflection for App1.MyClass and all of its public/private members
<Type Name="App1.MyClass" Dynamic="Required All"/>
To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
<Namespace Name="DataClasses.ViewModels" Seralize="All" />
-->

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
<Application>
<!--
An Assembly element with Name="*Application*" applies to all assemblies in
the application package. The asterisks are not wildcards.
-->
<Assembly Name="*Application*" Dynamic="Required All" />


<!-- Add your application specific runtime directives here. -->


</Application>
</Directives>
Loading

0 comments on commit 6e532f8

Please sign in to comment.