├── .gitattributes ├── .gitignore ├── Code └── MyOrders │ ├── MyOrders.sln │ └── MyOrders │ ├── MyOrders.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── MyOrders.Droid.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ ├── ic_action_add.png │ │ │ ├── ic_action_alarm.png │ │ │ ├── ic_action_clients.png │ │ │ ├── ic_action_menu.png │ │ │ ├── ic_action_orders.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_launcher.png │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_add.png │ │ │ ├── ic_action_alarm.png │ │ │ ├── ic_action_clients.png │ │ │ ├── ic_action_menu.png │ │ │ ├── ic_action_orders.png │ │ │ └── ic_action_settings.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_add.png │ │ │ ├── ic_action_alarm.png │ │ │ ├── ic_action_clients.png │ │ │ ├── ic_action_menu.png │ │ │ ├── ic_action_orders.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_launcher.png │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_add.png │ │ │ ├── ic_action_alarm.png │ │ │ ├── ic_action_clients.png │ │ │ ├── ic_action_menu.png │ │ │ ├── ic_action_orders.png │ │ │ ├── ic_action_settings.png │ │ │ ├── ic_launcher.png │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_action_add.png │ │ │ ├── ic_action_alarm.png │ │ │ ├── ic_action_clients.png │ │ │ ├── ic_action_menu.png │ │ │ ├── ic_action_orders.png │ │ │ └── ic_action_settings.png │ │ └── drawable │ │ │ ├── ic_launcher.png │ │ │ └── icon.png │ └── packages.config │ ├── MyOrders.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MyOrders.UWP.csproj │ ├── MyOrders.UWP.nuget.targets │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Windows_TemporaryKey.pfx │ ├── project.json │ └── project.lock.json │ ├── MyOrders.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MyOrders.WinPhone.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config │ ├── MyOrders.Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ └── StoreLogo.scale-100.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MyOrders.Windows.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Windows_TemporaryKey.pfx │ └── packages.config │ ├── MyOrders.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── MyOrders.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── MyOrders │ ├── App.xaml │ ├── App.xaml.cs │ ├── GettingStarted.Xamarin │ ├── Infrastructure │ └── InstanceLocator.cs │ ├── Models │ └── Order.cs │ ├── MyOrders.csproj │ ├── Pages │ ├── AlarmsPage.xaml │ ├── AlarmsPage.xaml.cs │ ├── ClientsPage.xaml │ ├── ClientsPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MasterPage.xaml │ ├── MasterPage.xaml.cs │ ├── MenuPage.xaml │ ├── MenuPage.xaml.cs │ ├── NewOrderPage.xaml │ ├── NewOrderPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── WelcomePage.xaml │ └── WelcomePage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Services │ ├── ApiService.cs │ ├── DialogService.cs │ └── NavigationService.cs │ ├── ViewModels │ ├── MainViewModel.cs │ ├── MenuItemViewModel.cs │ └── OrderViewModel.cs │ └── packages.config ├── LICENSE ├── README.md └── Resources ├── Mockups.svg └── Models.eap /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build Folders (you can keep bin if you'd like, to store dlls and pdbs) 2 | [Bb]in/ 3 | [Oo]bj/ 4 | 5 | # mstest test results 6 | TestResults 7 | 8 | ## Ignore Visual Studio temporary files, build results, and 9 | ## files generated by popular Visual Studio add-ons. 10 | 11 | # User-specific files 12 | *.suo 13 | *.user 14 | *.sln.docstates 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Rr]elease/ 19 | x64/ 20 | *_i.c 21 | *_p.c 22 | *.ilk 23 | *.meta 24 | *.obj 25 | *.pch 26 | *.pdb 27 | *.pgc 28 | *.pgd 29 | *.rsp 30 | *.sbr 31 | *.tlb 32 | *.tli 33 | *.tlh 34 | *.tmp 35 | *.log 36 | *.vspscc 37 | *.vssscc 38 | .builds 39 | 40 | # Visual C++ cache files 41 | ipch/ 42 | *.aps 43 | *.ncb 44 | *.opensdf 45 | *.sdf 46 | 47 | # Visual Studio profiler 48 | *.psess 49 | *.vsp 50 | *.vspx 51 | 52 | # Guidance Automation Toolkit 53 | *.gpState 54 | 55 | # ReSharper is a .NET coding add-in 56 | _ReSharper* 57 | 58 | # NCrunch 59 | *.ncrunch* 60 | .*crunch*.local.xml 61 | 62 | # Installshield output folder 63 | [Ee]xpress 64 | 65 | # DocProject is a documentation generator add-in 66 | DocProject/buildhelp/ 67 | DocProject/Help/*.HxT 68 | DocProject/Help/*.HxC 69 | DocProject/Help/*.hhc 70 | DocProject/Help/*.hhk 71 | DocProject/Help/*.hhp 72 | DocProject/Help/Html2 73 | DocProject/Help/html 74 | 75 | # Click-Once directory 76 | publish 77 | 78 | # Publish Web Output 79 | *.Publish.xml 80 | 81 | # NuGet Packages Directory 82 | packages 83 | 84 | # Windows Azure Build Output 85 | csx 86 | *.build.csdef 87 | 88 | # Windows Store app package directory 89 | AppPackages/ 90 | 91 | # Others 92 | [Bb]in 93 | [Oo]bj 94 | sql 95 | TestResults 96 | [Tt]est[Rr]esult* 97 | *.Cache 98 | ClientBin 99 | [Ss]tyle[Cc]op.* 100 | ~$* 101 | *.dbmdl 102 | Generated_Code #added for RIA/Silverlight projects 103 | 104 | # Backup & report files from converting an old project file to a newer 105 | # Visual Studio version. Backup files are not needed, because we have git ;-) 106 | _UpgradeReport_Files/ 107 | Backup*/ 108 | UpgradeLog*.XML 109 | *.apk 110 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25123.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders.Droid", "MyOrders\MyOrders.Droid\MyOrders.Droid.csproj", "{8F67D63C-FA36-40C0-8AF3-65233BDB4E38}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders.iOS", "MyOrders\MyOrders.iOS\MyOrders.iOS.csproj", "{91974F77-7460-47F4-AB33-B9A853729B5C}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders.WinPhone", "MyOrders\MyOrders.WinPhone\MyOrders.WinPhone.csproj", "{345F2E87-1B09-4AD6-B048-79A415E08633}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders.UWP", "MyOrders\MyOrders.UWP\MyOrders.UWP.csproj", "{2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}" 13 | EndProject 14 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders.Windows", "MyOrders\MyOrders.Windows\MyOrders.Windows.csproj", "{DB7EB612-1555-412C-B3BD-4E35B1CCE629}" 15 | EndProject 16 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyOrders", "MyOrders\MyOrders\MyOrders.csproj", "{F2B59D3A-3203-410E-8421-A3640DA02DD9}" 17 | EndProject 18 | Global 19 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 20 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU 21 | Ad-Hoc|ARM = Ad-Hoc|ARM 22 | Ad-Hoc|iPhone = Ad-Hoc|iPhone 23 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator 24 | Ad-Hoc|x64 = Ad-Hoc|x64 25 | Ad-Hoc|x86 = Ad-Hoc|x86 26 | AppStore|Any CPU = AppStore|Any CPU 27 | AppStore|ARM = AppStore|ARM 28 | AppStore|iPhone = AppStore|iPhone 29 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator 30 | AppStore|x64 = AppStore|x64 31 | AppStore|x86 = AppStore|x86 32 | Debug|Any CPU = Debug|Any CPU 33 | Debug|ARM = Debug|ARM 34 | Debug|iPhone = Debug|iPhone 35 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 36 | Debug|x64 = Debug|x64 37 | Debug|x86 = Debug|x86 38 | Release|Any CPU = Release|Any CPU 39 | Release|ARM = Release|ARM 40 | Release|iPhone = Release|iPhone 41 | Release|iPhoneSimulator = Release|iPhoneSimulator 42 | Release|x64 = Release|x64 43 | Release|x86 = Release|x86 44 | EndGlobalSection 45 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 46 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 47 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 48 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 49 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU 50 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|ARM.Build.0 = Release|Any CPU 51 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU 52 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 53 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 54 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 55 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 56 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 57 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 58 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 59 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x64.Build.0 = Release|Any CPU 60 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU 61 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU 62 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x86.Build.0 = Release|Any CPU 63 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU 64 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 65 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|Any CPU.Build.0 = Release|Any CPU 66 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 67 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|ARM.ActiveCfg = Release|Any CPU 68 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|ARM.Build.0 = Release|Any CPU 69 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|ARM.Deploy.0 = Release|Any CPU 70 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhone.ActiveCfg = Release|Any CPU 71 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhone.Build.0 = Release|Any CPU 72 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhone.Deploy.0 = Release|Any CPU 73 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 74 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 75 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 76 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x64.ActiveCfg = Release|Any CPU 77 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x64.Build.0 = Release|Any CPU 78 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x64.Deploy.0 = Release|Any CPU 79 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x86.ActiveCfg = Release|Any CPU 80 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x86.Build.0 = Release|Any CPU 81 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.AppStore|x86.Deploy.0 = Release|Any CPU 82 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 83 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|Any CPU.Build.0 = Debug|Any CPU 84 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 85 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|ARM.ActiveCfg = Debug|Any CPU 86 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|ARM.Build.0 = Debug|Any CPU 87 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|ARM.Deploy.0 = Debug|Any CPU 88 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhone.ActiveCfg = Debug|Any CPU 89 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhone.Build.0 = Debug|Any CPU 90 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhone.Deploy.0 = Debug|Any CPU 91 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 92 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 93 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 94 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x64.ActiveCfg = Debug|Any CPU 95 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x64.Build.0 = Debug|Any CPU 96 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x64.Deploy.0 = Debug|Any CPU 97 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x86.ActiveCfg = Debug|Any CPU 98 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x86.Build.0 = Debug|Any CPU 99 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Debug|x86.Deploy.0 = Debug|Any CPU 100 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|Any CPU.ActiveCfg = Release|Any CPU 101 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|Any CPU.Build.0 = Release|Any CPU 102 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|Any CPU.Deploy.0 = Release|Any CPU 103 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|ARM.ActiveCfg = Release|Any CPU 104 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|ARM.Build.0 = Release|Any CPU 105 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|ARM.Deploy.0 = Release|Any CPU 106 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhone.ActiveCfg = Release|Any CPU 107 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhone.Build.0 = Release|Any CPU 108 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhone.Deploy.0 = Release|Any CPU 109 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 110 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 111 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 112 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x64.ActiveCfg = Release|Any CPU 113 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x64.Build.0 = Release|Any CPU 114 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x64.Deploy.0 = Release|Any CPU 115 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x86.ActiveCfg = Release|Any CPU 116 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x86.Build.0 = Release|Any CPU 117 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38}.Release|x86.Deploy.0 = Release|Any CPU 118 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone 119 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone 120 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone 121 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone 122 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator 123 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator 124 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone 125 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone 126 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone 127 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|ARM.ActiveCfg = AppStore|iPhone 128 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|iPhone.ActiveCfg = AppStore|iPhone 129 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|iPhone.Build.0 = AppStore|iPhone 130 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator 131 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator 132 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|x64.ActiveCfg = AppStore|iPhone 133 | {91974F77-7460-47F4-AB33-B9A853729B5C}.AppStore|x86.ActiveCfg = AppStore|iPhone 134 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|Any CPU.ActiveCfg = Debug|iPhone 135 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|ARM.ActiveCfg = Debug|iPhone 136 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|iPhone.ActiveCfg = Debug|iPhone 137 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|iPhone.Build.0 = Debug|iPhone 138 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 139 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 140 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|x64.ActiveCfg = Debug|iPhone 141 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Debug|x86.ActiveCfg = Debug|iPhone 142 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|Any CPU.ActiveCfg = Release|iPhone 143 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|ARM.ActiveCfg = Release|iPhone 144 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|iPhone.ActiveCfg = Release|iPhone 145 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|iPhone.Build.0 = Release|iPhone 146 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 147 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 148 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|x64.ActiveCfg = Release|iPhone 149 | {91974F77-7460-47F4-AB33-B9A853729B5C}.Release|x86.ActiveCfg = Release|iPhone 150 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 151 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 152 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 153 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|ARM.ActiveCfg = Release|ARM 154 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|ARM.Build.0 = Release|ARM 155 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|ARM.Deploy.0 = Release|ARM 156 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 157 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 158 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 159 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 160 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 161 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 162 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 163 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x64.Build.0 = Release|Any CPU 164 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU 165 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x86.ActiveCfg = Release|x86 166 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x86.Build.0 = Release|x86 167 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Ad-Hoc|x86.Deploy.0 = Release|x86 168 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 169 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|Any CPU.Build.0 = Release|Any CPU 170 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 171 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|ARM.ActiveCfg = Release|ARM 172 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|ARM.Build.0 = Release|ARM 173 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|ARM.Deploy.0 = Release|ARM 174 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhone.ActiveCfg = Release|Any CPU 175 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhone.Build.0 = Release|Any CPU 176 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhone.Deploy.0 = Release|Any CPU 177 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 178 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 179 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 180 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x64.ActiveCfg = Release|Any CPU 181 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x64.Build.0 = Release|Any CPU 182 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x64.Deploy.0 = Release|Any CPU 183 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x86.ActiveCfg = Release|x86 184 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x86.Build.0 = Release|x86 185 | {345F2E87-1B09-4AD6-B048-79A415E08633}.AppStore|x86.Deploy.0 = Release|x86 186 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 187 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|ARM.ActiveCfg = Debug|ARM 188 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|ARM.Build.0 = Debug|ARM 189 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|ARM.Deploy.0 = Debug|ARM 190 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhone.ActiveCfg = Debug|Any CPU 191 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhone.Build.0 = Debug|Any CPU 192 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhone.Deploy.0 = Debug|Any CPU 193 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 194 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 195 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 196 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x64.ActiveCfg = Debug|Any CPU 197 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x64.Build.0 = Debug|Any CPU 198 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x64.Deploy.0 = Debug|Any CPU 199 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x86.ActiveCfg = Debug|x86 200 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x86.Build.0 = Debug|x86 201 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Debug|x86.Deploy.0 = Debug|x86 202 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|Any CPU.ActiveCfg = Release|Any CPU 203 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|Any CPU.Build.0 = Release|Any CPU 204 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|Any CPU.Deploy.0 = Release|Any CPU 205 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|ARM.ActiveCfg = Release|ARM 206 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|ARM.Build.0 = Release|ARM 207 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|ARM.Deploy.0 = Release|ARM 208 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhone.ActiveCfg = Release|Any CPU 209 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhone.Build.0 = Release|Any CPU 210 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhone.Deploy.0 = Release|Any CPU 211 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 212 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 213 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 214 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x64.ActiveCfg = Release|Any CPU 215 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x64.Build.0 = Release|Any CPU 216 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x64.Deploy.0 = Release|Any CPU 217 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x86.ActiveCfg = Release|x86 218 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x86.Build.0 = Release|x86 219 | {345F2E87-1B09-4AD6-B048-79A415E08633}.Release|x86.Deploy.0 = Release|x86 220 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|Any CPU.ActiveCfg = Release|x86 221 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|Any CPU.Build.0 = Release|x86 222 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|Any CPU.Deploy.0 = Release|x86 223 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|ARM.ActiveCfg = Release|ARM 224 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|ARM.Build.0 = Release|ARM 225 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|ARM.Deploy.0 = Release|ARM 226 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhone.ActiveCfg = Release|x86 227 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhone.Build.0 = Release|x86 228 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhone.Deploy.0 = Release|x86 229 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x86 230 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x86 231 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x86 232 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x64.ActiveCfg = Release|x64 233 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x64.Build.0 = Release|x64 234 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x64.Deploy.0 = Release|x64 235 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x86.ActiveCfg = Release|x86 236 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x86.Build.0 = Release|x86 237 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Ad-Hoc|x86.Deploy.0 = Release|x86 238 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|Any CPU.ActiveCfg = Release|x86 239 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|Any CPU.Build.0 = Release|x86 240 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|Any CPU.Deploy.0 = Release|x86 241 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|ARM.ActiveCfg = Release|ARM 242 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|ARM.Build.0 = Release|ARM 243 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|ARM.Deploy.0 = Release|ARM 244 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhone.ActiveCfg = Release|x86 245 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhone.Build.0 = Release|x86 246 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhone.Deploy.0 = Release|x86 247 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhoneSimulator.ActiveCfg = Release|x86 248 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhoneSimulator.Build.0 = Release|x86 249 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|iPhoneSimulator.Deploy.0 = Release|x86 250 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x64.ActiveCfg = Release|x64 251 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x64.Build.0 = Release|x64 252 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x64.Deploy.0 = Release|x64 253 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x86.ActiveCfg = Release|x86 254 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x86.Build.0 = Release|x86 255 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.AppStore|x86.Deploy.0 = Release|x86 256 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|Any CPU.ActiveCfg = Debug|x86 257 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|ARM.ActiveCfg = Debug|ARM 258 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|ARM.Build.0 = Debug|ARM 259 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|ARM.Deploy.0 = Debug|ARM 260 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|iPhone.ActiveCfg = Debug|x86 261 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86 262 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x64.ActiveCfg = Debug|x64 263 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x64.Build.0 = Debug|x64 264 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x64.Deploy.0 = Debug|x64 265 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x86.ActiveCfg = Debug|x86 266 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x86.Build.0 = Debug|x86 267 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Debug|x86.Deploy.0 = Debug|x86 268 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|Any CPU.ActiveCfg = Release|x86 269 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|ARM.ActiveCfg = Release|ARM 270 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|ARM.Build.0 = Release|ARM 271 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|ARM.Deploy.0 = Release|ARM 272 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|iPhone.ActiveCfg = Release|x86 273 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|iPhoneSimulator.ActiveCfg = Release|x86 274 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x64.ActiveCfg = Release|x64 275 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x64.Build.0 = Release|x64 276 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x64.Deploy.0 = Release|x64 277 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x86.ActiveCfg = Release|x86 278 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x86.Build.0 = Release|x86 279 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23}.Release|x86.Deploy.0 = Release|x86 280 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 281 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 282 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 283 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|ARM.ActiveCfg = Release|ARM 284 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|ARM.Build.0 = Release|ARM 285 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|ARM.Deploy.0 = Release|ARM 286 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 287 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 288 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 289 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 290 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 291 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 292 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x64.ActiveCfg = Release|x64 293 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x64.Build.0 = Release|x64 294 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x64.Deploy.0 = Release|x64 295 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x86.ActiveCfg = Release|x86 296 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x86.Build.0 = Release|x86 297 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Ad-Hoc|x86.Deploy.0 = Release|x86 298 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 299 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|Any CPU.Build.0 = Release|Any CPU 300 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 301 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|ARM.ActiveCfg = Release|ARM 302 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|ARM.Build.0 = Release|ARM 303 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|ARM.Deploy.0 = Release|ARM 304 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhone.ActiveCfg = Release|Any CPU 305 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhone.Build.0 = Release|Any CPU 306 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhone.Deploy.0 = Release|Any CPU 307 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 308 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 309 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 310 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x64.ActiveCfg = Release|x64 311 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x64.Build.0 = Release|x64 312 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x64.Deploy.0 = Release|x64 313 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x86.ActiveCfg = Release|x86 314 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x86.Build.0 = Release|x86 315 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.AppStore|x86.Deploy.0 = Release|x86 316 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 317 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|ARM.ActiveCfg = Debug|ARM 318 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|ARM.Build.0 = Debug|ARM 319 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|ARM.Deploy.0 = Debug|ARM 320 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhone.ActiveCfg = Debug|Any CPU 321 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhone.Build.0 = Debug|Any CPU 322 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhone.Deploy.0 = Debug|Any CPU 323 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 324 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 325 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 326 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x64.ActiveCfg = Debug|x64 327 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x64.Build.0 = Debug|x64 328 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x64.Deploy.0 = Debug|x64 329 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x86.ActiveCfg = Debug|x86 330 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x86.Build.0 = Debug|x86 331 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Debug|x86.Deploy.0 = Debug|x86 332 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|Any CPU.ActiveCfg = Release|Any CPU 333 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|Any CPU.Build.0 = Release|Any CPU 334 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|Any CPU.Deploy.0 = Release|Any CPU 335 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|ARM.ActiveCfg = Release|ARM 336 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|ARM.Build.0 = Release|ARM 337 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|ARM.Deploy.0 = Release|ARM 338 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhone.ActiveCfg = Release|Any CPU 339 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhone.Build.0 = Release|Any CPU 340 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhone.Deploy.0 = Release|Any CPU 341 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 342 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 343 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 344 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x64.ActiveCfg = Release|x64 345 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x64.Build.0 = Release|x64 346 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x64.Deploy.0 = Release|x64 347 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x86.ActiveCfg = Release|x86 348 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x86.Build.0 = Release|x86 349 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629}.Release|x86.Deploy.0 = Release|x86 350 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 351 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 352 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU 353 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|ARM.Build.0 = Release|Any CPU 354 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 355 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 356 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 357 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 358 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 359 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|x64.Build.0 = Release|Any CPU 360 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU 361 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Ad-Hoc|x86.Build.0 = Release|Any CPU 362 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 363 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|Any CPU.Build.0 = Release|Any CPU 364 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|ARM.ActiveCfg = Release|Any CPU 365 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|ARM.Build.0 = Release|Any CPU 366 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|iPhone.ActiveCfg = Release|Any CPU 367 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|iPhone.Build.0 = Release|Any CPU 368 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 369 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 370 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|x64.ActiveCfg = Release|Any CPU 371 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|x64.Build.0 = Release|Any CPU 372 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|x86.ActiveCfg = Release|Any CPU 373 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.AppStore|x86.Build.0 = Release|Any CPU 374 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 375 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|Any CPU.Build.0 = Debug|Any CPU 376 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|ARM.ActiveCfg = Debug|Any CPU 377 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|ARM.Build.0 = Debug|Any CPU 378 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|iPhone.ActiveCfg = Debug|Any CPU 379 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|iPhone.Build.0 = Debug|Any CPU 380 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 381 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 382 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|x64.ActiveCfg = Debug|Any CPU 383 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|x64.Build.0 = Debug|Any CPU 384 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|x86.ActiveCfg = Debug|Any CPU 385 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Debug|x86.Build.0 = Debug|Any CPU 386 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|Any CPU.ActiveCfg = Release|Any CPU 387 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|Any CPU.Build.0 = Release|Any CPU 388 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|ARM.ActiveCfg = Release|Any CPU 389 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|ARM.Build.0 = Release|Any CPU 390 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|iPhone.ActiveCfg = Release|Any CPU 391 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|iPhone.Build.0 = Release|Any CPU 392 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 393 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 394 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|x64.ActiveCfg = Release|Any CPU 395 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|x64.Build.0 = Release|Any CPU 396 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|x86.ActiveCfg = Release|Any CPU 397 | {F2B59D3A-3203-410E-8421-A3640DA02DD9}.Release|x86.Build.0 = Release|Any CPU 398 | EndGlobalSection 399 | GlobalSection(SolutionProperties) = preSolution 400 | HideSolutionNode = FALSE 401 | EndGlobalSection 402 | EndGlobal 403 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | using Android.Graphics.Drawables; 10 | 11 | namespace MyOrders.Droid 12 | { 13 | [Activity(Label = "MyOrders", Icon = "@drawable/ic_launcher", 14 | Theme = "@android:style/Theme.Material.Light.DarkActionBar", 15 | MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 16 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity 17 | { 18 | protected override void OnCreate(Bundle bundle) 19 | { 20 | 21 | base.OnCreate(bundle); 22 | 23 | global::Xamarin.Forms.Forms.Init(this, bundle); 24 | LoadApplication(new App()); 25 | 26 | ActionBar.SetIcon( 27 | new ColorDrawable(Resources.GetColor(Android.Resource.Color.Transparent))); 28 | } 29 | } 30 | } 31 | 32 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/MyOrders.Droid.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 8.0.30703 7 | 2.0 8 | {8F67D63C-FA36-40C0-8AF3-65233BDB4E38} 9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Library 11 | Properties 12 | MyOrders.Droid 13 | MyOrders.Droid 14 | 512 15 | true 16 | Resources\Resource.Designer.cs 17 | Off 18 | Properties\AndroidManifest.xml 19 | False 20 | v6.0 21 | armeabi,armeabi-v7a,x86 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | true 31 | full 32 | false 33 | bin\Debug\ 34 | DEBUG;TRACE 35 | prompt 36 | 4 37 | True 38 | None 39 | 40 | 41 | pdbonly 42 | true 43 | bin\Release\ 44 | TRACE 45 | prompt 46 | 4 47 | False 48 | SdkOnly 49 | 50 | 51 | 52 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\MonoAndroid10\FormsViewGroup.dll 53 | True 54 | 55 | 56 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\monoandroid1\GalaSoft.MvvmLight.dll 57 | True 58 | 59 | 60 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\monoandroid1\GalaSoft.MvvmLight.Extras.dll 61 | True 62 | 63 | 64 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\monoandroid1\GalaSoft.MvvmLight.Platform.dll 65 | True 66 | 67 | 68 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll 69 | True 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | ..\..\packages\Xamarin.Android.Support.Design.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.Design.dll 79 | True 80 | 81 | 82 | ..\..\packages\Xamarin.Android.Support.v4.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 83 | True 84 | 85 | 86 | ..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll 87 | True 88 | 89 | 90 | ..\..\packages\Xamarin.Android.Support.v7.CardView.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll 91 | True 92 | 93 | 94 | ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll 95 | True 96 | 97 | 98 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\MonoAndroid10\Xamarin.Forms.Core.dll 99 | True 100 | 101 | 102 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 103 | True 104 | 105 | 106 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 107 | True 108 | 109 | 110 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 111 | True 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | MyOrders 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 248 | 249 | 250 | 251 | 258 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("MyOrders.Droid")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("MyOrders.Droid")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.xml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable-hdpi/ 12 | icon.png 13 | 14 | drawable-ldpi/ 15 | icon.png 16 | 17 | drawable-mdpi/ 18 | icon.png 19 | 20 | layout/ 21 | main.xml 22 | 23 | values/ 24 | strings.xml 25 | 26 | In order to get the build system to recognize Android resources, set the build action to 27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 28 | instead operate on resource IDs. When you compile an Android application that uses resources, 29 | the build system will package the resources for distribution and generate a class called 30 | "Resource" that contains the tokens for each one of the resources included. For example, 31 | for the above Resources layout, this is what the Resource class would expose: 32 | 33 | public class Resource { 34 | public class drawable { 35 | public const int icon = 0x123; 36 | } 37 | 38 | public class layout { 39 | public const int main = 0x456; 40 | } 41 | 42 | public class strings { 43 | public const int first_string = 0xabc; 44 | public const int second_string = 0xbcd; 45 | } 46 | } 47 | 48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main 49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first 50 | string in the dictionary file values/strings.xml. 51 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_add.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_alarm.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_clients.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_menu.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_orders.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_action_settings.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_add.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_alarm.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_clients.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_menu.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_orders.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-mdpi/ic_action_settings.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_add.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_alarm.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_clients.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_menu.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_orders.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_add.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_alarm.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_clients.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_menu.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_orders.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_add.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_alarm.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_clients.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_menu.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_orders.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable-xxxhdpi/ic_action_settings.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable/ic_launcher.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Droid/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.ApplicationModel; 7 | using Windows.ApplicationModel.Activation; 8 | using Windows.Foundation; 9 | using Windows.Foundation.Collections; 10 | using Windows.UI.Xaml; 11 | using Windows.UI.Xaml.Controls; 12 | using Windows.UI.Xaml.Controls.Primitives; 13 | using Windows.UI.Xaml.Data; 14 | using Windows.UI.Xaml.Input; 15 | using Windows.UI.Xaml.Media; 16 | using Windows.UI.Xaml.Navigation; 17 | 18 | namespace MyOrders.UWP 19 | { 20 | /// 21 | /// Provides application-specific behavior to supplement the default Application class. 22 | /// 23 | sealed partial class App : Application 24 | { 25 | /// 26 | /// Initializes the singleton application object. This is the first line of authored code 27 | /// executed, and as such is the logical equivalent of main() or WinMain(). 28 | /// 29 | public App() 30 | { 31 | this.InitializeComponent(); 32 | this.Suspending += OnSuspending; 33 | } 34 | 35 | /// 36 | /// Invoked when the application is launched normally by the end user. Other entry points 37 | /// will be used such as when the application is launched to open a specific file. 38 | /// 39 | /// Details about the launch request and process. 40 | protected override void OnLaunched(LaunchActivatedEventArgs e) 41 | { 42 | 43 | #if DEBUG 44 | if (System.Diagnostics.Debugger.IsAttached) 45 | { 46 | this.DebugSettings.EnableFrameRateCounter = true; 47 | } 48 | #endif 49 | 50 | Frame rootFrame = Window.Current.Content as Frame; 51 | 52 | // Do not repeat app initialization when the Window already has content, 53 | // just ensure that the window is active 54 | if (rootFrame == null) 55 | { 56 | // Create a Frame to act as the navigation context and navigate to the first page 57 | rootFrame = new Frame(); 58 | 59 | rootFrame.NavigationFailed += OnNavigationFailed; 60 | 61 | Xamarin.Forms.Forms.Init(e); 62 | 63 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 64 | { 65 | //TODO: Load state from previously suspended application 66 | } 67 | 68 | // Place the frame in the current Window 69 | Window.Current.Content = rootFrame; 70 | } 71 | 72 | if (rootFrame.Content == null) 73 | { 74 | // When the navigation stack isn't restored navigate to the first page, 75 | // configuring the new page by passing required information as a navigation 76 | // parameter 77 | rootFrame.Navigate(typeof(MainPage), e.Arguments); 78 | } 79 | // Ensure the current window is active 80 | Window.Current.Activate(); 81 | } 82 | 83 | /// 84 | /// Invoked when Navigation to a certain page fails 85 | /// 86 | /// The Frame which failed navigation 87 | /// Details about the navigation failure 88 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) 89 | { 90 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName); 91 | } 92 | 93 | /// 94 | /// Invoked when application execution is being suspended. Application state is saved 95 | /// without knowing whether the application will be terminated or resumed with the contents 96 | /// of memory still intact. 97 | /// 98 | /// The source of the suspend request. 99 | /// Details about the suspend request. 100 | private void OnSuspending(object sender, SuspendingEventArgs e) 101 | { 102 | var deferral = e.SuspendingOperation.GetDeferral(); 103 | //TODO: Save application state and stop any background activity 104 | deferral.Complete(); 105 | } 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.Foundation; 7 | using Windows.Foundation.Collections; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | using Windows.UI.Xaml.Controls.Primitives; 11 | using Windows.UI.Xaml.Data; 12 | using Windows.UI.Xaml.Input; 13 | using Windows.UI.Xaml.Media; 14 | using Windows.UI.Xaml.Navigation; 15 | 16 | namespace MyOrders.UWP 17 | { 18 | public sealed partial class MainPage 19 | { 20 | public MainPage() 21 | { 22 | this.InitializeComponent(); 23 | 24 | LoadApplication(new MyOrders.App()); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/MyOrders.UWP.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | x86 7 | {2C255AD0-9E8B-4D25-965B-BBAF8D6A2B23} 8 | AppContainerExe 9 | Properties 10 | MyOrders.UWP 11 | MyOrders.UWP 12 | en-US 13 | UAP 14 | 10.0.10586.0 15 | 10.0.10586.0 16 | 14 17 | true 18 | 512 19 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 20 | Windows_TemporaryKey.pfx 21 | 22 | 23 | true 24 | bin\ARM\Debug\ 25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 26 | ;2008 27 | full 28 | ARM 29 | false 30 | prompt 31 | true 32 | 33 | 34 | bin\ARM\Release\ 35 | TRACE;NETFX_CORE;WINDOWS_UWP 36 | true 37 | ;2008 38 | pdbonly 39 | ARM 40 | false 41 | prompt 42 | true 43 | true 44 | 45 | 46 | true 47 | bin\x64\Debug\ 48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 49 | ;2008 50 | full 51 | x64 52 | false 53 | prompt 54 | true 55 | 56 | 57 | bin\x64\Release\ 58 | TRACE;NETFX_CORE;WINDOWS_UWP 59 | true 60 | ;2008 61 | pdbonly 62 | x64 63 | false 64 | prompt 65 | true 66 | true 67 | 68 | 69 | true 70 | bin\x86\Debug\ 71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 72 | ;2008 73 | full 74 | x86 75 | false 76 | prompt 77 | true 78 | 79 | 80 | bin\x86\Release\ 81 | TRACE;NETFX_CORE;WINDOWS_UWP 82 | true 83 | ;2008 84 | pdbonly 85 | x86 86 | false 87 | prompt 88 | true 89 | true 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | App.xaml 98 | 99 | 100 | MainPage.xaml 101 | 102 | 103 | 104 | 105 | 106 | Designer 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | MSBuild:Compile 123 | Designer 124 | 125 | 126 | MSBuild:Compile 127 | Designer 128 | 129 | 130 | 131 | 132 | MyOrders 133 | 134 | 135 | 136 | 14.0 137 | 138 | 139 | 146 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/MyOrders.UWP.nuget.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(UserProfile)\.nuget\packages\ 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8 | 9 | 13 | 14 | 15 | 16 | 17 | FPCL.WIndows 18 | joaqu 19 | Assets\StoreLogo.png 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("MyOrders.UWP")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("MyOrders.UWP")] 13 | [assembly: AssemblyCopyright("Copyright © 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.UWP/Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.UWP/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", 4 | "MvvmLightLibs": "5.3.0", 5 | "Xamarin.Forms": "2.0.0.6482" 6 | }, 7 | "frameworks": { 8 | "uap10.0": {} 9 | }, 10 | "runtimes": { 11 | "win10-arm": {}, 12 | "win10-arm-aot": {}, 13 | "win10-x86": {}, 14 | "win10-x86-aot": {}, 15 | "win10-x64": {}, 16 | "win10-x64-aot": {} 17 | } 18 | } -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.ApplicationModel; 7 | using Windows.ApplicationModel.Activation; 8 | using Windows.Foundation; 9 | using Windows.Foundation.Collections; 10 | using Windows.UI.Xaml; 11 | using Windows.UI.Xaml.Controls; 12 | using Windows.UI.Xaml.Controls.Primitives; 13 | using Windows.UI.Xaml.Data; 14 | using Windows.UI.Xaml.Input; 15 | using Windows.UI.Xaml.Media; 16 | using Windows.UI.Xaml.Media.Animation; 17 | using Windows.UI.Xaml.Navigation; 18 | 19 | // The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227 20 | 21 | namespace MyOrders.WinPhone 22 | { 23 | /// 24 | /// Provides application-specific behavior to supplement the default Application class. 25 | /// 26 | public sealed partial class App : Application 27 | { 28 | private TransitionCollection transitions; 29 | 30 | /// 31 | /// Initializes the singleton application object. This is the first line of authored code 32 | /// executed, and as such is the logical equivalent of main() or WinMain(). 33 | /// 34 | public App() 35 | { 36 | this.InitializeComponent(); 37 | this.Suspending += this.OnSuspending; 38 | } 39 | 40 | /// 41 | /// Invoked when the application is launched normally by the end user. Other entry points 42 | /// will be used when the application is launched to open a specific file, to display 43 | /// search results, and so forth. 44 | /// 45 | /// Details about the launch request and process. 46 | protected override void OnLaunched(LaunchActivatedEventArgs e) 47 | { 48 | #if DEBUG 49 | if (System.Diagnostics.Debugger.IsAttached) 50 | { 51 | this.DebugSettings.EnableFrameRateCounter = true; 52 | } 53 | #endif 54 | 55 | Frame rootFrame = Window.Current.Content as Frame; 56 | 57 | // Do not repeat app initialization when the Window already has content, 58 | // just ensure that the window is active 59 | if (rootFrame == null) 60 | { 61 | // Create a Frame to act as the navigation context and navigate to the first page 62 | rootFrame = new Frame(); 63 | 64 | // TODO: change this value to a cache size that is appropriate for your application 65 | rootFrame.CacheSize = 1; 66 | 67 | Xamarin.Forms.Forms.Init(e); 68 | 69 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 70 | { 71 | // TODO: Load state from previously suspended application 72 | } 73 | 74 | // Place the frame in the current Window 75 | Window.Current.Content = rootFrame; 76 | } 77 | 78 | if (rootFrame.Content == null) 79 | { 80 | // Removes the turnstile navigation for startup. 81 | if (rootFrame.ContentTransitions != null) 82 | { 83 | this.transitions = new TransitionCollection(); 84 | foreach (var c in rootFrame.ContentTransitions) 85 | { 86 | this.transitions.Add(c); 87 | } 88 | } 89 | 90 | rootFrame.ContentTransitions = null; 91 | rootFrame.Navigated += this.RootFrame_FirstNavigated; 92 | 93 | // When the navigation stack isn't restored navigate to the first page, 94 | // configuring the new page by passing required information as a navigation 95 | // parameter 96 | if (!rootFrame.Navigate(typeof(MainPage), e.Arguments)) 97 | { 98 | throw new Exception("Failed to create initial page"); 99 | } 100 | } 101 | 102 | // Ensure the current window is active 103 | Window.Current.Activate(); 104 | } 105 | 106 | /// 107 | /// Restores the content transitions after the app has launched. 108 | /// 109 | /// The object where the handler is attached. 110 | /// Details about the navigation event. 111 | private void RootFrame_FirstNavigated(object sender, NavigationEventArgs e) 112 | { 113 | var rootFrame = sender as Frame; 114 | rootFrame.ContentTransitions = this.transitions ?? new TransitionCollection() { new NavigationThemeTransition() }; 115 | rootFrame.Navigated -= this.RootFrame_FirstNavigated; 116 | } 117 | 118 | /// 119 | /// Invoked when application execution is being suspended. Application state is saved 120 | /// without knowing whether the application will be terminated or resumed with the contents 121 | /// of memory still intact. 122 | /// 123 | /// The source of the suspend request. 124 | /// Details about the suspend request. 125 | private void OnSuspending(object sender, SuspendingEventArgs e) 126 | { 127 | var deferral = e.SuspendingOperation.GetDeferral(); 128 | 129 | // TODO: Save application state and stop any background activity 130 | deferral.Complete(); 131 | } 132 | } 133 | } -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.WinPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  11 | 12 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.Foundation; 7 | using Windows.Foundation.Collections; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | using Windows.UI.Xaml.Controls.Primitives; 11 | using Windows.UI.Xaml.Data; 12 | using Windows.UI.Xaml.Input; 13 | using Windows.UI.Xaml.Media; 14 | using Windows.UI.Xaml.Navigation; 15 | 16 | // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238 17 | 18 | namespace MyOrders.WinPhone 19 | { 20 | /// 21 | /// An empty page that can be used on its own or navigated to within a Frame. 22 | /// 23 | public sealed partial class MainPage 24 | { 25 | public MainPage() 26 | { 27 | this.InitializeComponent(); 28 | 29 | this.NavigationCacheMode = NavigationCacheMode.Required; 30 | 31 | LoadApplication(new MyOrders.App()); 32 | } 33 | 34 | /// 35 | /// Invoked when this page is about to be displayed in a Frame. 36 | /// 37 | /// Event data that describes how this page was reached. 38 | /// This parameter is typically used to configure the page. 39 | protected override void OnNavigatedTo(NavigationEventArgs e) 40 | { 41 | // TODO: Prepare page for display here. 42 | 43 | // TODO: If your application contains multiple pages, ensure that you are 44 | // handling the hardware Back button by registering for the 45 | // Windows.Phone.UI.Input.HardwareButtons.BackPressed event. 46 | // If you are using the NavigationHelper provided by some templates, 47 | // this event is handled for you. 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/MyOrders.WinPhone.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {345F2E87-1B09-4AD6-B048-79A415E08633} 8 | AppContainerExe 9 | Properties 10 | MyOrders.WinPhone 11 | MyOrders.WinPhone 12 | en-US 13 | 8.1 14 | 12 15 | 512 16 | {76F1466A-8B6D-4E39-A767-685A06062A39};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 17 | true 18 | 19 | 20 | 21 | 22 | AnyCPU 23 | true 24 | full 25 | false 26 | bin\Debug\ 27 | DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP 28 | prompt 29 | 4 30 | 31 | 32 | AnyCPU 33 | pdbonly 34 | true 35 | bin\Release\ 36 | TRACE;NETFX_CORE;WINDOWS_PHONE_APP 37 | prompt 38 | 4 39 | 40 | 41 | true 42 | bin\ARM\Debug\ 43 | DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP 44 | ;2008 45 | full 46 | ARM 47 | false 48 | prompt 49 | true 50 | 51 | 52 | bin\ARM\Release\ 53 | TRACE;NETFX_CORE;WINDOWS_PHONE_APP 54 | true 55 | ;2008 56 | pdbonly 57 | ARM 58 | false 59 | prompt 60 | true 61 | 62 | 63 | true 64 | bin\x86\Debug\ 65 | DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP 66 | ;2008 67 | full 68 | x86 69 | false 70 | prompt 71 | true 72 | 73 | 74 | bin\x86\Release\ 75 | TRACE;NETFX_CORE;WINDOWS_PHONE_APP 76 | true 77 | ;2008 78 | pdbonly 79 | x86 80 | false 81 | prompt 82 | true 83 | 84 | 85 | 86 | App.xaml 87 | 88 | 89 | MainPage.xaml 90 | 91 | 92 | 93 | 94 | 95 | Designer 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | Designer 109 | 110 | 111 | MSBuild:Compile 112 | Designer 113 | 114 | 115 | 116 | 117 | MyOrders 118 | 119 | 120 | 121 | 122 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\wpa81\GalaSoft.MvvmLight.dll 123 | True 124 | 125 | 126 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\wpa81\GalaSoft.MvvmLight.Extras.dll 127 | True 128 | 129 | 130 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\wpa81\GalaSoft.MvvmLight.Platform.dll 131 | True 132 | 133 | 134 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll 135 | True 136 | 137 | 138 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\wpa81\Xamarin.Forms.Core.dll 139 | True 140 | 141 | 142 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\wpa81\Xamarin.Forms.Platform.dll 143 | True 144 | 145 | 146 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\wpa81\Xamarin.Forms.Platform.WinRT.dll 147 | True 148 | 149 | 150 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\wpa81\Xamarin.Forms.Platform.WinRT.Phone.dll 151 | True 152 | 153 | 154 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\wpa81\Xamarin.Forms.Xaml.dll 155 | True 156 | 157 | 158 | 159 | 160 | 161 | 162 | 12.0 163 | 164 | 165 | WindowsPhoneApp 166 | 167 | 168 | 169 | 170 | 171 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 172 | 173 | 174 | 175 | 182 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | FPCL.Windows8.WindowsPhone 12 | joaqu 13 | Assets\StoreLogo.png 14 | 15 | 16 | 17 | 6.3.1 18 | 6.3.1 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("MyOrders.WinPhone.WindowsPhone")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("MyOrders.WinPhone.WindowsPhone")] 13 | [assembly: AssemblyCopyright("Copyright © 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.WinPhone/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.ApplicationModel; 7 | using Windows.ApplicationModel.Activation; 8 | using Windows.Foundation; 9 | using Windows.Foundation.Collections; 10 | using Windows.UI.Xaml; 11 | using Windows.UI.Xaml.Controls; 12 | using Windows.UI.Xaml.Controls.Primitives; 13 | using Windows.UI.Xaml.Data; 14 | using Windows.UI.Xaml.Input; 15 | using Windows.UI.Xaml.Media; 16 | using Windows.UI.Xaml.Media.Animation; 17 | using Windows.UI.Xaml.Navigation; 18 | 19 | // The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227 20 | 21 | namespace MyOrders.Windows 22 | { 23 | /// 24 | /// Provides application-specific behavior to supplement the default Application class. 25 | /// 26 | public sealed partial class App : Application 27 | { 28 | /// 29 | /// Initializes the singleton application object. This is the first line of authored code 30 | /// executed, and as such is the logical equivalent of main() or WinMain(). 31 | /// 32 | public App() 33 | { 34 | this.InitializeComponent(); 35 | this.Suspending += this.OnSuspending; 36 | } 37 | 38 | /// 39 | /// Invoked when the application is launched normally by the end user. Other entry points 40 | /// will be used when the application is launched to open a specific file, to display 41 | /// search results, and so forth. 42 | /// 43 | /// Details about the launch request and process. 44 | protected override void OnLaunched(LaunchActivatedEventArgs e) 45 | { 46 | #if DEBUG 47 | if (System.Diagnostics.Debugger.IsAttached) 48 | { 49 | this.DebugSettings.EnableFrameRateCounter = true; 50 | } 51 | #endif 52 | 53 | Frame rootFrame = Window.Current.Content as Frame; 54 | 55 | // Do not repeat app initialization when the Window already has content, 56 | // just ensure that the window is active 57 | if (rootFrame == null) 58 | { 59 | // Create a Frame to act as the navigation context and navigate to the first page 60 | rootFrame = new Frame(); 61 | 62 | // TODO: change this value to a cache size that is appropriate for your application 63 | rootFrame.CacheSize = 1; 64 | 65 | Xamarin.Forms.Forms.Init(e); 66 | 67 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 68 | { 69 | // TODO: Load state from previously suspended application 70 | } 71 | 72 | // Place the frame in the current Window 73 | Window.Current.Content = rootFrame; 74 | } 75 | 76 | if (rootFrame.Content == null) 77 | { 78 | // When the navigation stack isn't restored navigate to the first page, 79 | // configuring the new page by passing required information as a navigation 80 | // parameter 81 | if (!rootFrame.Navigate(typeof(MainPage), e.Arguments)) 82 | { 83 | throw new Exception("Failed to create initial page"); 84 | } 85 | } 86 | 87 | // Ensure the current window is active 88 | Window.Current.Activate(); 89 | } 90 | 91 | /// 92 | /// Invoked when application execution is being suspended. Application state is saved 93 | /// without knowing whether the application will be terminated or resumed with the contents 94 | /// of memory still intact. 95 | /// 96 | /// The source of the suspend request. 97 | /// Details about the suspend request. 98 | private void OnSuspending(object sender, SuspendingEventArgs e) 99 | { 100 | var deferral = e.SuspendingOperation.GetDeferral(); 101 | 102 | // TODO: Save application state and stop any background activity 103 | deferral.Complete(); 104 | } 105 | } 106 | } -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Windows/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Windows/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Windows/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.Foundation; 7 | using Windows.Foundation.Collections; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | using Windows.UI.Xaml.Controls.Primitives; 11 | using Windows.UI.Xaml.Data; 12 | using Windows.UI.Xaml.Input; 13 | using Windows.UI.Xaml.Media; 14 | using Windows.UI.Xaml.Navigation; 15 | 16 | namespace MyOrders.Windows 17 | { 18 | public sealed partial class MainPage 19 | { 20 | public MainPage() 21 | { 22 | this.InitializeComponent(); 23 | 24 | LoadApplication(new MyOrders.App()); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/MyOrders.Windows.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {DB7EB612-1555-412C-B3BD-4E35B1CCE629} 8 | AppContainerExe 9 | Properties 10 | MyOrders.Windows 11 | MyOrders.Windows 12 | en-US 13 | 8.1 14 | 12 15 | 512 16 | true 17 | {BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 18 | Windows_TemporaryKey.pfx 19 | 20 | 21 | 22 | 23 | AnyCPU 24 | true 25 | full 26 | false 27 | bin\Debug\ 28 | DEBUG;TRACE;NETFX_CORE;WINDOWS_APP 29 | prompt 30 | 4 31 | 32 | 33 | AnyCPU 34 | pdbonly 35 | true 36 | bin\Release\ 37 | TRACE;NETFX_CORE;WINDOWS_APP 38 | prompt 39 | 4 40 | 41 | 42 | true 43 | bin\ARM\Debug\ 44 | DEBUG;TRACE;NETFX_CORE;WINDOWS_APP 45 | ;2008 46 | full 47 | ARM 48 | false 49 | prompt 50 | true 51 | 52 | 53 | bin\ARM\Release\ 54 | TRACE;NETFX_CORE;WINDOWS_APP 55 | true 56 | ;2008 57 | pdbonly 58 | ARM 59 | false 60 | prompt 61 | true 62 | 63 | 64 | true 65 | bin\x64\Debug\ 66 | DEBUG;TRACE;NETFX_CORE;WINDOWS_APP 67 | ;2008 68 | full 69 | x64 70 | false 71 | prompt 72 | true 73 | 74 | 75 | bin\x64\Release\ 76 | TRACE;NETFX_CORE;WINDOWS_APP 77 | true 78 | ;2008 79 | pdbonly 80 | x64 81 | false 82 | prompt 83 | true 84 | 85 | 86 | true 87 | bin\x86\Debug\ 88 | DEBUG;TRACE;NETFX_CORE;WINDOWS_APP 89 | ;2008 90 | full 91 | x86 92 | false 93 | prompt 94 | true 95 | 96 | 97 | bin\x86\Release\ 98 | TRACE;NETFX_CORE;WINDOWS_APP 99 | true 100 | ;2008 101 | pdbonly 102 | x86 103 | false 104 | prompt 105 | true 106 | 107 | 108 | 109 | App.xaml 110 | 111 | 112 | MainPage.xaml 113 | 114 | 115 | 116 | 117 | 118 | Designer 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | Designer 132 | 133 | 134 | MSBuild:Compile 135 | Designer 136 | 137 | 138 | 139 | 140 | MyOrders 141 | 142 | 143 | 144 | 145 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\windows81\GalaSoft.MvvmLight.dll 146 | True 147 | 148 | 149 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\windows81\GalaSoft.MvvmLight.Extras.dll 150 | True 151 | 152 | 153 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\windows81\GalaSoft.MvvmLight.Platform.dll 154 | True 155 | 156 | 157 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll 158 | True 159 | 160 | 161 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\win81\Xamarin.Forms.Core.dll 162 | True 163 | 164 | 165 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\win81\Xamarin.Forms.Platform.dll 166 | True 167 | 168 | 169 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\win81\Xamarin.Forms.Platform.WinRT.dll 170 | True 171 | 172 | 173 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\win81\Xamarin.Forms.Platform.WinRT.Tablet.dll 174 | True 175 | 176 | 177 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\win81\Xamarin.Forms.Xaml.dll 178 | True 179 | 180 | 181 | 182 | 12.0 183 | 184 | 185 | 186 | 187 | 188 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 189 | 190 | 191 | 192 | 199 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7 | 8 | 9 | FPCL.Windows8.Windows 10 | joaqu 11 | Assets\StoreLogo.png 12 | 13 | 14 | 15 | 6.3.0 16 | 6.3.0 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("MyOrders.Windows.Windows")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("MyOrders.Windows.Windows")] 13 | [assembly: AssemblyCopyright("Copyright © 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.Windows/Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.Windows/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace MyOrders.iOS 9 | { 10 | // The UIApplicationDelegate for the application. This class is responsible for launching the 11 | // User Interface of the application, as well as listening (and optionally responding) to 12 | // application events from iOS. 13 | [Register("AppDelegate")] 14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 15 | { 16 | // 17 | // This method is invoked when the application has loaded and is ready to run. In this 18 | // method you should instantiate the window, load the UI into it and then make the window 19 | // visible. 20 | // 21 | // You have 17 seconds to return from this method, or iOS will terminate your application. 22 | // 23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 24 | { 25 | global::Xamarin.Forms.Forms.Init(); 26 | LoadApplication(new App()); 27 | 28 | return base.FinishedLaunching(app, options); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Info.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | UIDeviceFamily 6 | 7 | 1 8 | 2 9 | 10 | UISupportedInterfaceOrientations 11 | 12 | UIInterfaceOrientationPortrait 13 | UIInterfaceOrientationLandscapeLeft 14 | UIInterfaceOrientationLandscapeRight 15 | 16 | UISupportedInterfaceOrientations~ipad 17 | 18 | UIInterfaceOrientationPortrait 19 | UIInterfaceOrientationPortraitUpsideDown 20 | UIInterfaceOrientationLandscapeLeft 21 | UIInterfaceOrientationLandscapeRight 22 | 23 | MinimumOSVersion 24 | 6.0 25 | CFBundleDisplayName 26 | MyOrders 27 | CFBundleIdentifier 28 | com.yourcompany.MyOrders 29 | CFBundleVersion 30 | 1.0 31 | CFBundleIconFiles 32 | 33 | Icon-60@2x 34 | Icon-60@3x 35 | Icon-76 36 | Icon-76@2x 37 | Default 38 | Default@2x 39 | Default-568h@2x 40 | Default-Portrait 41 | Default-Portrait@2x 42 | Icon-Small-40 43 | Icon-Small-40@2x 44 | Icon-Small-40@3x 45 | Icon-Small 46 | Icon-Small@2x 47 | Icon-Small@3x 48 | 49 | UILaunchStoryboardName 50 | LaunchScreen 51 | 52 | 53 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace MyOrders.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/MyOrders.iOS.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | 8.0.30703 7 | 2.0 8 | {91974F77-7460-47F4-AB33-B9A853729B5C} 9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Exe 11 | MyOrders.iOS 12 | Resources 13 | MyOrdersiOS 14 | 15 | 16 | 17 | 18 | true 19 | full 20 | false 21 | bin\iPhoneSimulator\Debug 22 | DEBUG 23 | prompt 24 | 4 25 | false 26 | i386, x86_64 27 | None 28 | true 29 | 30 | 31 | none 32 | true 33 | bin\iPhoneSimulator\Release 34 | prompt 35 | 4 36 | None 37 | i386, x86_64 38 | false 39 | 40 | 41 | true 42 | full 43 | false 44 | bin\iPhone\Debug 45 | DEBUG 46 | prompt 47 | 4 48 | false 49 | ARMv7, ARM64 50 | iPhone Developer 51 | true 52 | Entitlements.plist 53 | 54 | 55 | none 56 | true 57 | bin\iPhone\Release 58 | prompt 59 | 4 60 | ARMv7, ARM64 61 | false 62 | iPhone Developer 63 | Entitlements.plist 64 | 65 | 66 | none 67 | True 68 | bin\iPhone\Ad-Hoc 69 | prompt 70 | 4 71 | False 72 | ARMv7, ARM64 73 | True 74 | Automatic:AdHoc 75 | iPhone Distribution 76 | Entitlements.plist 77 | 78 | 79 | none 80 | True 81 | bin\iPhone\AppStore 82 | prompt 83 | 4 84 | False 85 | ARMv7, ARM64 86 | Automatic:AppStore 87 | iPhone Distribution 88 | Entitlements.plist 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | MyOrders 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\xamarin.ios10\GalaSoft.MvvmLight.dll 126 | True 127 | 128 | 129 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\xamarin.ios10\GalaSoft.MvvmLight.Extras.dll 130 | True 131 | 132 | 133 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\xamarin.ios10\GalaSoft.MvvmLight.Platform.dll 134 | True 135 | 136 | 137 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll 138 | True 139 | 140 | 141 | 142 | 143 | 144 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll 145 | True 146 | 147 | 148 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll 149 | True 150 | 151 | 152 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll 153 | True 154 | 155 | 156 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll 157 | True 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("MyOrders.iOS")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("MyOrders.iOS")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Code/MyOrders/MyOrders/MyOrders.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | #ff3b77 10 | #52656b 11 | #cdff00 12 | #b8b89f 13 | #f9f9f9 14 | 15 | #52656b 16 | #ffffff 17 | 18 | 19 | 24 | 25 | 26 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 50 | 51 | 56 | 60 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using MyOrders.Pages; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders 10 | { 11 | public partial class App : Application 12 | { 13 | public static NavigationPage Navigator { get; internal set; } 14 | public static MasterPage Master { get; internal set; } 15 | 16 | public App() 17 | { 18 | InitializeComponent(); 19 | // The root page of your application 20 | MainPage = new WelcomePage(); 21 | } 22 | 23 | protected override void OnStart() 24 | { 25 | // Handle when your app starts 26 | } 27 | 28 | protected override void OnSleep() 29 | { 30 | // Handle when your app sleeps 31 | } 32 | 33 | protected override void OnResume() 34 | { 35 | // Handle when your app resumes 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/GettingStarted.Xamarin: -------------------------------------------------------------------------------- 1 | 2 | GS\XF\CS\App\GettingStarted.html 3 | false 4 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Infrastructure/InstanceLocator.cs: -------------------------------------------------------------------------------- 1 | using MyOrders.ViewModels; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace MyOrders.Infrastructure 9 | { 10 | public class InstanceLocator 11 | { 12 | public InstanceLocator() 13 | { 14 | Main = new MainViewModel(); 15 | } 16 | 17 | public MainViewModel Main { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Models/Order.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace MyOrders.Models 9 | { 10 | public class Order 11 | { 12 | [JsonProperty("id")] 13 | public string Id { get; set; } 14 | [JsonProperty("Title")] 15 | public string Title { get; set; } 16 | public string Description { get; set; } 17 | public DateTime? DeliveryDate { get; set; } 18 | public string DeliveryInformation { get; set; } 19 | public string Client { get; set; } 20 | public string Phone { get; set; } 21 | public bool? IsDelivered { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/MyOrders.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 10.0 6 | Debug 7 | AnyCPU 8 | {F2B59D3A-3203-410E-8421-A3640DA02DD9} 9 | Library 10 | Properties 11 | MyOrders 12 | MyOrders 13 | v4.5 14 | Profile111 15 | 512 16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 17 | 18 | 19 | 20 | 21 | true 22 | full 23 | false 24 | bin\Debug\ 25 | DEBUG;TRACE 26 | prompt 27 | 4 28 | 29 | 30 | pdbonly 31 | true 32 | bin\Release\ 33 | TRACE 34 | prompt 35 | 4 36 | 37 | 38 | 39 | App.xaml 40 | 41 | 42 | 43 | 44 | AlarmsPage.xaml 45 | 46 | 47 | ClientsPage.xaml 48 | 49 | 50 | MainPage.xaml 51 | 52 | 53 | MasterPage.xaml 54 | 55 | 56 | MenuPage.xaml 57 | 58 | 59 | NewOrderPage.xaml 60 | 61 | 62 | SettingsPage.xaml 63 | 64 | 65 | WelcomePage.xaml 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10\GalaSoft.MvvmLight.dll 78 | True 79 | 80 | 81 | ..\..\packages\MvvmLightLibs.5.3.0.0\lib\portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10\GalaSoft.MvvmLight.Extras.dll 82 | True 83 | 84 | 85 | ..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll 86 | True 87 | 88 | 89 | ..\..\packages\Newtonsoft.Json.8.0.3\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll 90 | True 91 | 92 | 93 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll 94 | True 95 | 96 | 97 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll 98 | True 99 | 100 | 101 | ..\..\packages\Xamarin.Forms.2.0.0.6482\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll 102 | True 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | MSBuild:UpdateDesignTimeXaml 112 | Designer 113 | 114 | 115 | 116 | 117 | MSBuild:UpdateDesignTimeXaml 118 | Designer 119 | 120 | 121 | 122 | 123 | MSBuild:UpdateDesignTimeXaml 124 | Designer 125 | 126 | 127 | 128 | 129 | MSBuild:UpdateDesignTimeXaml 130 | Designer 131 | 132 | 133 | 134 | 135 | MSBuild:UpdateDesignTimeXaml 136 | Designer 137 | 138 | 139 | 140 | 141 | MSBuild:UpdateDesignTimeXaml 142 | Designer 143 | 144 | 145 | 146 | 147 | MSBuild:UpdateDesignTimeXaml 148 | Designer 149 | 150 | 151 | 152 | 153 | MSBuild:UpdateDesignTimeXaml 154 | Designer 155 | 156 | 157 | 158 | 159 | MSBuild:UpdateDesignTimeXaml 160 | Designer 161 | 162 | 163 | 164 | 165 | 166 | 167 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 168 | 169 | 170 | 171 | 178 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/AlarmsPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 5 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/AlarmsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class AlarmsPage : ContentPage 12 | { 13 | public AlarmsPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/ClientsPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 5 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/ClientsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class ClientsPage : ContentPage 12 | { 13 | public ClientsPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class MainPage : ContentPage 12 | { 13 | public MainPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MasterPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MasterPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class MasterPage : MasterDetailPage 12 | { 13 | public MasterPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | 18 | protected override void OnAppearing() 19 | { 20 | base.OnAppearing(); 21 | App.Master = this; 22 | App.Navigator = this.Navigator; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MenuPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/MenuPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class MenuPage : ContentPage 12 | { 13 | public MenuPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/NewOrderPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | 12 | 15 | 17 | 20 | 22 | 26 | 28 | 32 | 34 | 37 | yyyy-MM-dd 38 | 39 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/NewOrderPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class NewOrderPage : ContentPage 12 | { 13 | public NewOrderPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 5 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class SettingsPage : ContentPage 12 | { 13 | public SettingsPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 12 | 16 | 23 | 24 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Pages/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Pages 10 | { 11 | public partial class WelcomePage : ContentPage 12 | { 13 | public WelcomePage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Resources; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("MyOrders")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("MyOrders")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: NeutralResourcesLanguage("en")] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Services/ApiService.cs: -------------------------------------------------------------------------------- 1 | using MyOrders.Models; 2 | using Newtonsoft.Json; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Net.Http; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace MyOrders.Services 11 | { 12 | public class ApiService 13 | { 14 | public async Task> GetAllOrders() 15 | { 16 | using (HttpClient client = new HttpClient()) 17 | { 18 | string url = "http://ninjatips.azurewebsites.net/tables/Orders"; 19 | client.DefaultRequestHeaders.Add("ZUMO-API-VERSION", "2.0.0"); 20 | var result = await client.GetAsync(url); 21 | 22 | string data = await result.Content.ReadAsStringAsync(); 23 | 24 | if (result.IsSuccessStatusCode) 25 | { 26 | return JsonConvert.DeserializeObject>(data); 27 | } 28 | else 29 | return new List(); 30 | } 31 | } 32 | 33 | public async Task CreateOrder(Order newOrder) 34 | { 35 | using (HttpClient client = new HttpClient()) 36 | { 37 | string url = "http://ninjatips.azurewebsites.net/tables/Orders"; 38 | client.DefaultRequestHeaders.Add("ZUMO-API-VERSION", "2.0.0"); 39 | 40 | string content = JsonConvert.SerializeObject(newOrder); 41 | StringContent body = new StringContent(content, Encoding.UTF8, "application/json"); 42 | var result = await client.PostAsync(url, body); 43 | 44 | string data = await result.Content.ReadAsStringAsync(); 45 | 46 | if (result.IsSuccessStatusCode) 47 | { 48 | return JsonConvert.DeserializeObject(data); 49 | } 50 | else 51 | return null; 52 | } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Services/DialogService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace MyOrders.Services 8 | { 9 | public class DialogService 10 | { 11 | public async Task ShowMessage(string message, string title) 12 | { 13 | await App.Navigator.DisplayAlert(title, message, "OK"); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/Services/NavigationService.cs: -------------------------------------------------------------------------------- 1 | using MyOrders.Pages; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Xamarin.Forms; 8 | 9 | namespace MyOrders.Services 10 | { 11 | public class NavigationService 12 | { 13 | public async void Navigate(string pageName) 14 | { 15 | App.Master.IsPresented = false; 16 | switch (pageName) 17 | { 18 | case "NewOrderPage": 19 | await Navigate(new NewOrderPage()); 20 | break; 21 | case "AlarmsPage": 22 | await Navigate(new AlarmsPage()); 23 | break; 24 | case "ClientsPage": 25 | await Navigate(new ClientsPage()); 26 | break; 27 | case "SettingsPage": 28 | await Navigate(new SettingsPage()); 29 | break; 30 | case "MainPage": 31 | await App.Navigator.PopToRootAsync(); 32 | break; 33 | default: 34 | break; 35 | } 36 | } 37 | 38 | private static async Task Navigate(T page) where T : Page 39 | { 40 | NavigationPage.SetHasBackButton(page, false); 41 | NavigationPage.SetBackButtonTitle(page, "Atrás"); //iOS 42 | 43 | await App.Navigator.PushAsync(page); 44 | } 45 | 46 | internal void SetMainPage(string pageName) 47 | { 48 | switch (pageName) 49 | { 50 | case "MasterPage": 51 | App.Current.MainPage = new MasterPage(); 52 | break; 53 | default: 54 | break; 55 | } 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight.Command; 2 | using MyOrders.Pages; 3 | using MyOrders.Services; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Collections.ObjectModel; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | using System.Windows.Input; 11 | 12 | namespace MyOrders.ViewModels 13 | { 14 | public class MainViewModel 15 | { 16 | NavigationService navigationService; 17 | ApiService apiService; 18 | 19 | public MainViewModel() 20 | { 21 | navigationService = new NavigationService(); 22 | apiService = new ApiService(); 23 | 24 | Orders = new ObservableCollection(); 25 | 26 | LoadMenu(); 27 | //LoadData(); 28 | } 29 | 30 | #region Properties 31 | 32 | public OrderViewModel NewOrder { get; private set; } 33 | 34 | public ObservableCollection Orders { get; set; } 35 | 36 | public ObservableCollection Menu { get; set; } 37 | #endregion 38 | 39 | #region Commands 40 | public ICommand GoToCommand 41 | { 42 | get { return new RelayCommand(GoTo); } 43 | } 44 | 45 | private void GoTo(string pageName) 46 | { 47 | switch (pageName) 48 | { 49 | case "NewOrderPage": 50 | NewOrder = new OrderViewModel(); 51 | break; 52 | default: 53 | break; 54 | } 55 | navigationService.Navigate(pageName); 56 | } 57 | 58 | public ICommand StartCommand 59 | { 60 | get { return new RelayCommand(Start); } 61 | } 62 | 63 | 64 | private async void Start() 65 | { 66 | var list = await apiService.GetAllOrders(); 67 | Orders.Clear(); 68 | 69 | foreach (var item in list) 70 | { 71 | Orders.Add(new OrderViewModel() 72 | { 73 | Title = item.Title, 74 | DeliveryDate = item.DeliveryDate, 75 | Description = item.Description 76 | }); 77 | } 78 | 79 | navigationService.SetMainPage("MasterPage"); 80 | } 81 | 82 | #endregion 83 | 84 | #region Methods 85 | private void LoadMenu() 86 | { 87 | Menu = new ObservableCollection(); 88 | 89 | Menu.Add(new MenuItemViewModel() 90 | { 91 | Icon = "ic_action_orders", 92 | Title = "Pedidos", 93 | PageName = "MainPage" 94 | }); 95 | 96 | Menu.Add(new MenuItemViewModel() 97 | { 98 | Icon = "ic_action_clients", 99 | Title = "Clientes", 100 | PageName = "ClientsPage" 101 | }); 102 | 103 | Menu.Add(new MenuItemViewModel() 104 | { 105 | Icon = "ic_action_alarm", 106 | Title = "Alarmas", 107 | PageName = "AlarmsPage" 108 | }); 109 | 110 | Menu.Add(new MenuItemViewModel() 111 | { 112 | Icon = "ic_action_settings", 113 | Title = "Ajustes", 114 | PageName = "SettingsPage" 115 | }); 116 | } 117 | 118 | private void LoadData() 119 | { 120 | Orders = new ObservableCollection(); 121 | for (int i = 0; i < 5; i++) 122 | { 123 | Orders.Add(new OrderViewModel() 124 | { 125 | Title = "Lorem Ipsum", 126 | DeliveryDate = DateTime.Today, 127 | Description = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." 128 | }); 129 | } 130 | } 131 | #endregion 132 | 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/ViewModels/MenuItemViewModel.cs: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight.Command; 2 | using MyOrders.Pages; 3 | using MyOrders.Services; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Input; 10 | 11 | namespace MyOrders.ViewModels 12 | { 13 | public class MenuItemViewModel 14 | { 15 | NavigationService navigationService; 16 | 17 | public MenuItemViewModel() 18 | { 19 | navigationService = new NavigationService(); 20 | } 21 | 22 | public string Icon { get; set; } 23 | public string Title { get; set; } 24 | public string PageName { get; set; } 25 | 26 | public ICommand NavigateCommand 27 | { 28 | get { return new RelayCommand(() => navigationService.Navigate(PageName)); } 29 | } 30 | 31 | 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/ViewModels/OrderViewModel.cs: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight.Command; 2 | using MyOrders.Models; 3 | using MyOrders.Services; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Input; 10 | 11 | namespace MyOrders.ViewModels 12 | { 13 | public class OrderViewModel 14 | { 15 | ApiService apiService; 16 | DialogService dialogService; 17 | 18 | public OrderViewModel() 19 | { 20 | apiService = new ApiService(); 21 | dialogService = new DialogService(); 22 | DeliveryDate = DateTime.Today; 23 | } 24 | 25 | public string Id { get; set; } 26 | public string Title { get; set; } 27 | public string Description { get; set; } 28 | public DateTime CreationDate { get; set; } 29 | public DateTime? DeliveryDate { get; set; } 30 | public string DeliveryInformation { get; set; } 31 | public string Client { get; set; } 32 | public string Phone { get; set; } 33 | public bool IsDelivered { get; set; } 34 | public DateTime MinimumDate { get; private set; } 35 | 36 | public ICommand SaveCommand 37 | { 38 | get { return new RelayCommand(Save); } 39 | } 40 | 41 | 42 | private async void Save() 43 | { 44 | try 45 | { 46 | await apiService.CreateOrder(new Order() 47 | { 48 | Id = Guid.NewGuid().ToString(), 49 | Title = this.Title, 50 | Client = this.Client, 51 | DeliveryDate = this.DeliveryDate, 52 | DeliveryInformation = this.DeliveryInformation, 53 | Description = this.Description, 54 | IsDelivered = false 55 | }); 56 | 57 | await dialogService.ShowMessage("El pedido ha sido creado.", "Información"); 58 | } 59 | catch 60 | { 61 | await dialogService.ShowMessage("Ha ocuarrido un error inesperado.", "Error"); 62 | } 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /Code/MyOrders/MyOrders/MyOrders/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #59 NinjaTips | Xamarin Forms | Laboratorio Creando un App desde 0 2 | 3 | * Video del Lab #1: 4 | https://www.youtube.com/watch?v=mJ7TIXUJmIs 5 | * Video del Lab #2: 6 | https://www.youtube.com/watch?v=viOkK1NwNm8 7 | -------------------------------------------------------------------------------- /Resources/Models.eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soreygarcia/xamarin-forms-lab/0cb3cff32b2aadeac8be4a95592abe2c5d17c3d5/Resources/Models.eap --------------------------------------------------------------------------------