gitextract_q2xce2zl/ ├── .gitattributes ├── .gitignore ├── ActionCenterDemo/ │ ├── ActionCenterDemo/ │ │ ├── ActionCenterDemo.csproj │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ ├── ApplicationBase.cs │ │ │ └── MVVM.cs │ │ ├── Converters/ │ │ │ ├── BoolToColorConverter.cs │ │ │ └── CountToVisibilityConverter.cs │ │ ├── Models/ │ │ │ ├── MessageItem.cs │ │ │ └── ToastParams.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Repositories/ │ │ │ └── MessageItemRepository.cs │ │ ├── Services/ │ │ │ ├── DispatcherService.cs │ │ │ ├── NavigationService.cs │ │ │ └── TileServices.cs │ │ ├── ViewModels/ │ │ │ ├── DetailPageViewModel.cs │ │ │ └── MainPageViewModel.cs │ │ ├── Views/ │ │ │ ├── DetailPage.xaml │ │ │ ├── DetailPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ ├── ActionCenterDemo.sln │ └── ActionCenterHistoryChangedTask/ │ ├── ActionCenterChangedBackgroundTask.cs │ ├── ActionCenterHistoryChangedTask.csproj │ ├── MessageItem.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ToastParams.cs │ └── packages.config ├── Adaptive UI/ │ └── Blank10/ │ └── Views/ │ └── MainPage.xaml ├── AdaptiveCode/ │ └── VisibleBoundsDemo/ │ ├── VisibleBoundsDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Triggers/ │ │ │ └── DeviceFamilyTrigger.cs │ │ └── VisibleBoundsDemo.csproj │ └── VisibleBoundsDemo.sln ├── AdaptiveUI/ │ ├── AdaptiveUI/ │ │ ├── AdaptiveUI-Blank.csproj │ │ ├── AdaptiveUI.sln │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Controls/ │ │ │ └── AutoNavButton.cs │ │ ├── Extensions/ │ │ │ └── WeakEvent.cs │ │ ├── Model/ │ │ │ └── SampleInfo.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Themes/ │ │ │ └── Generic.xaml │ │ ├── Triggers/ │ │ │ ├── ApiInformationTrigger.cs │ │ │ ├── ControlSizeTrigger.cs │ │ │ ├── DeviceFamilyTrigger.cs │ │ │ ├── InputTypeTrigger.cs │ │ │ ├── InteractionModeTrigger.cs │ │ │ ├── NetworkAvailableStateTrigger.cs │ │ │ └── OrientationTrigger.cs │ │ ├── Views/ │ │ │ ├── ApiInformationPage.xaml │ │ │ ├── ApiInformationPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── OrientationPage.xaml │ │ │ ├── OrientationPage.xaml.cs │ │ │ ├── WindowSizePage.xaml │ │ │ └── WindowSizePage.xaml.cs │ │ └── packages.config │ └── AdaptiveUI.sln ├── AppService/ │ └── AppService_EncoderDecoder/ │ ├── AppService_EncoderDecoder.sln │ ├── ClientApp/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── ClientApp.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── packages.config │ ├── ServerApp/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── ServerApp.csproj │ │ └── packages.config │ └── TextEncoderComponent/ │ ├── EncoderDecoderTask.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── TextEncoderComponent.csproj │ └── packages.config ├── AppServicesDemo/ │ ├── SimpleCalculatorAppService/ │ │ ├── AppServicesClientApp/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AppServicesClientApp.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── AppServicesDemo/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AppServicesDemo.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── AppServicesDemoTask/ │ │ │ ├── AppServiceTask.cs │ │ │ ├── AppServicesDemoTask.csproj │ │ │ └── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── SimpleCalculatorAppServicesDemo.sln │ └── SynonymsAppServiceDemo/ │ ├── AppServicesClientApp/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppServicesClientApp.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── AppServicesDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppServicesDemo.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── AppServicesDemo.sln │ ├── AppServicesDemoTask/ │ │ ├── AppServiceTask.cs │ │ ├── AppServicesDemoTask.csproj │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── SynonymsService/ │ │ ├── BingSynonymsResponse.cs │ │ ├── JSONHelper.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SynonymApi.cs │ │ ├── SynonymsService.csproj │ │ └── SynonymsServiceTask.cs │ └── SynonymsServiceClientLibrary/ │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SynonymsServiceClient.cs │ ├── SynonymsServiceClientLibrary.csproj │ ├── SynonymsServiceResponse.cs │ └── packages.config ├── AzureMobileApps/ │ ├── UWPDevMVA_Runtime/ │ │ ├── UWPDevMVA.sln │ │ └── UWPDevMVAService/ │ │ ├── App_Start/ │ │ │ └── WebApiConfig.cs │ │ ├── Controllers/ │ │ │ └── TodoItemController.cs │ │ ├── DataObjects/ │ │ │ └── TodoItem.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models/ │ │ │ └── UWPDevMVAContext.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── UWPDevMVAService.csproj │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ └── UWPDevMVA_Windows_CS/ │ ├── UWPDevMVA/ │ │ └── UWPDevMVA.WindowsPhone/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataModel/ │ │ │ └── TodoItem.cs │ │ ├── MainPage.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── UWPDevMVA.UWP.csproj │ │ ├── app.config │ │ └── packages.config │ └── UWPDevMVA.sln ├── BackgroundExecution/ │ ├── BackgroundExecution.sln │ ├── BackgroundTask/ │ │ ├── BackgroundTask.csproj │ │ ├── MyUpdateBadgeTask.cs │ │ ├── MyUpdateTileTask.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── ForegroundApp/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Common/ │ │ ├── BackgroundHelper.cs │ │ └── BootStrapper.cs │ ├── Converters/ │ │ ├── DateTimeFormatConverter.cs │ │ └── ValueWhenConverter.cs │ ├── ForegroundApp.csproj │ ├── Models/ │ │ ├── Models.readme.htm │ │ ├── TodoItem.cs │ │ └── TodoList.cs │ ├── Mvvm/ │ │ ├── BindableBase.cs │ │ ├── Command.cs │ │ └── ViewModelBase.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Repositories/ │ │ ├── TodoItemRepository.cs │ │ └── TodoListRepository.cs │ ├── Services/ │ │ ├── FileService/ │ │ │ ├── FileHelper.cs │ │ │ └── FileService.cs │ │ └── NavigationService/ │ │ ├── INavigatable.cs │ │ ├── NavigationEventArgs.cs │ │ ├── NavigationFacade.cs │ │ └── NavigationService.cs │ ├── Styles/ │ │ └── StarRadioButtonStyle.xaml │ ├── ViewModels/ │ │ ├── MainPageViewModel.cs │ │ ├── TodoItemViewModel.cs │ │ └── TodoListViewModel.cs │ ├── Views/ │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs │ └── packages.config ├── Cortana/ │ ├── CortanaTodo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── CortanaTodo.csproj │ │ ├── Extensions/ │ │ │ └── WeakEvent.cs │ │ ├── Mvvm/ │ │ │ ├── CommandCollection.cs │ │ │ ├── CommandHelper.cs │ │ │ ├── DynamicCommand.cs │ │ │ ├── ViewModel.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Services/ │ │ │ ├── Lifecycle/ │ │ │ │ └── ILifecycleAware.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigationAware.cs │ │ │ ├── NavigationEventArgsEx.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── ViewModels/ │ │ │ └── MainPageViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ ├── VoiceCommands.xml │ │ └── packages.config │ ├── CortanaTodo.Background/ │ │ ├── CortanaTodo.Background.csproj │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── VoiceCommandService.cs │ │ └── packages.config │ ├── CortanaTodo.Shared/ │ │ ├── CortanaTodo.Shared.csproj │ │ ├── Models/ │ │ │ ├── BindableBase.cs │ │ │ ├── DataObject.cs │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ ├── TaskHelper.cs │ │ │ └── TodoService.cs │ │ └── packages.config │ └── CortanaTodo.sln ├── DragAndDropSample/ │ ├── DragAndDropSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── DragAndDropSample.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── packages.config │ └── DragAndDropSample.sln ├── HelloWorld/ │ └── HelloWorld/ │ ├── Services/ │ │ └── AdService/ │ │ ├── AdHelper.cs │ │ └── AdService.cs │ └── ViewModels/ │ └── MainPageViewModel.cs ├── HttpClient WireSerialization/ │ ├── NorthwindService/ │ │ ├── Category.cs │ │ ├── Customer.cs │ │ ├── Employee.cs │ │ ├── Northwind.Context.cs │ │ ├── Northwind.Context.tt │ │ ├── Northwind.Designer.cs │ │ ├── Northwind.cs │ │ ├── Northwind.edmx │ │ ├── Northwind.edmx.diagram │ │ ├── Northwind.svc │ │ ├── Northwind.svc.cs │ │ ├── Northwind.tt │ │ ├── NorthwindService.csproj │ │ ├── Order.cs │ │ ├── Order_Detail.cs │ │ ├── Product.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Shipper.cs │ │ ├── Supplier.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config │ ├── UWPclient/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── UWPclient.csproj │ │ └── packages.config │ └── WireSerialization.sln ├── KeepTheKeys/ │ ├── KeepTheKeys/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DevicePage.xaml │ │ ├── DevicePage.xaml.cs │ │ ├── KeepTheKeys.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── RadioButtonValueConverter.cs │ ├── KeepTheKeys.sln │ ├── KeepTheKeysBackground/ │ │ ├── KeepTheKeysBackground.csproj │ │ ├── KeyFobTask.cs │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ ├── KeepTheKeysCommon/ │ │ ├── AlertLevel.cs │ │ ├── KeepTheKeysCommon.csproj │ │ ├── KeyFob.cs │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ └── Notes.txt ├── LaunchForResultsDemo/ │ ├── LaunchForResultsDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ ├── NavigationHelper.cs │ │ │ ├── ObservableDictionary.cs │ │ │ ├── RelayCommand.cs │ │ │ └── SuspensionManager.cs │ │ ├── ContinuationPage.xaml │ │ ├── ContinuationPage.xaml.cs │ │ ├── LaunchForResultsDemo.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── LaunchForResultsDemo.sln │ └── LaunchTargetDemoApp/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── LaunchTargetDemoApp.csproj │ ├── LaunchTargetPage.xaml │ ├── LaunchTargetPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties/ │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── LaunchForResultsShoppingDemo/ │ ├── CheckOut/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CheckOut.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MakePayment.xaml │ │ ├── MakePayment.xaml.cs │ │ ├── Models/ │ │ │ └── Item.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── LaunchForResultsShoppingDemo.sln │ └── Shop/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Receipt.xaml │ ├── Receipt.xaml.cs │ ├── Shop.csproj │ ├── ViewModels/ │ │ ├── CanNotifyPropertyChanged.cs │ │ ├── Command.cs │ │ ├── MainPageViewModel.cs │ │ ├── Product.cs │ │ └── ViewModelLocator.cs │ └── packages.config ├── MapsDrawingShapes/ │ ├── DrawingShapes/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DrawingShapes.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MapElementData.cs │ │ ├── MapExtensions.cs │ │ ├── Package.appxmanifest │ │ ├── PointList.cs │ │ └── Properties/ │ │ └── AssemblyInfo.cs │ └── DrawingShapes.sln ├── MigrationDemo/ │ ├── Begin/ │ │ └── ContosoCookbook/ │ │ ├── ContosoCookbook/ │ │ │ ├── AboutPage.xaml │ │ │ ├── AboutPage.xaml.cs │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Common/ │ │ │ │ ├── NavigationHelper.cs │ │ │ │ ├── ObservableDictionary.cs │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── RelayCommand.cs │ │ │ │ └── SuspensionManager.cs │ │ │ ├── ContosoCookbook.csproj │ │ │ ├── Converters/ │ │ │ │ ├── ImageSourceToStringConverter.cs │ │ │ │ └── UserImagesDisplayConverter.cs │ │ │ ├── Data/ │ │ │ │ └── Recipes.txt │ │ │ ├── DataModel/ │ │ │ │ ├── BindableBase.cs │ │ │ │ ├── RecipeDataSource.cs │ │ │ │ └── SampleDataSource.cs │ │ │ ├── GroupDetailPage.xaml │ │ │ ├── GroupDetailPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── RecipeDetailPage.xaml │ │ │ ├── RecipeDetailPage.xaml.cs │ │ │ └── Strings/ │ │ │ └── en-US/ │ │ │ └── Resources.resw │ │ └── ContosoCookbook.sln │ ├── Controls/ │ │ ├── BackButton.xaml │ │ └── BackButton.xaml.cs │ └── End/ │ └── ContosoCookbook/ │ ├── ContosoCookbook/ │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ ├── NavigationHelper.cs │ │ │ ├── ObservableDictionary.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RelayCommand.cs │ │ │ └── SuspensionManager.cs │ │ ├── ContosoCookbook.csproj │ │ ├── Controls/ │ │ │ ├── BackButton.xaml │ │ │ └── BackButton.xaml.cs │ │ ├── Converters/ │ │ │ ├── ImageSourceToStringConverter.cs │ │ │ └── UserImagesDisplayConverter.cs │ │ ├── Data/ │ │ │ └── Recipes.txt │ │ ├── DataModel/ │ │ │ ├── BindableBase.cs │ │ │ ├── RecipeDataSource.cs │ │ │ └── SampleDataSource.cs │ │ ├── GroupDetailPage.xaml │ │ ├── GroupDetailPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RecipeDetailPage.xaml │ │ ├── RecipeDetailPage.xaml.cs │ │ └── Strings/ │ │ └── en-US/ │ │ └── Resources.resw │ └── ContosoCookbook.sln ├── Navigation/ │ └── Blank1/ │ ├── ViewModels/ │ │ └── Page2ViewModel.cs │ └── Views/ │ └── MainPage.xaml.cs ├── Performance/ │ ├── Performance/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Models/ │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Performance.csproj │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ └── TodoItemRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── ViewModels/ │ │ │ ├── IncrementalAccessPageViewModel.cs │ │ │ ├── RandomAccessPageViewModel.cs │ │ │ └── TodoItemViewModel.cs │ │ ├── Views/ │ │ │ ├── DeferedPhasePage.xaml │ │ │ ├── DeferedPhasePage.xaml.cs │ │ │ ├── IncrementalAccessPage.xaml │ │ │ ├── IncrementalAccessPage.xaml.cs │ │ │ ├── RandomAccessPage.xaml │ │ │ ├── RandomAccessPage.xaml.cs │ │ │ ├── ShellPage.xaml │ │ │ └── ShellPage.xaml.cs │ │ ├── Virtualize/ │ │ │ ├── IProvider.cs │ │ │ ├── IncrementalList.cs │ │ │ ├── ObservableVector.cs │ │ │ ├── RandomAccessList - Copy.cs │ │ │ ├── RandomAccessList.cs │ │ │ └── TodoItemViewModelProvider.cs │ │ └── packages.config │ └── Performance.sln ├── ProtocolHandlerDemo/ │ ├── FirstProtocolHandler/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── FirstProtocolHandler.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── packages.config │ ├── ProtocolHandlerDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── ProtocolHandlerDemo.csproj │ │ └── packages.config │ ├── ProtocolHandlerDemo.sln │ └── SecondProtocolHandler/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SecondProtocolHandler.csproj │ └── packages.config ├── PushTriggerSample/ │ ├── PushTriggerBackgroundTask/ │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── PushTriggerBackgroundTask.csproj │ │ ├── RawTriggerTask.cs │ │ └── packages.config │ ├── PushTriggerSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── Converters.readme.htm │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Helpers/ │ │ │ └── PushHandlingHelper.cs │ │ ├── Models/ │ │ │ ├── Models.readme.htm │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── PushTriggerSample.csproj │ │ ├── Repositories/ │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ └── PushTriggerSample.sln ├── README.md ├── RoamingSettingsDemo/ │ ├── RoamingSettingsDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── RoamingSettingsDemo.csproj │ │ ├── Services/ │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ └── RoamingSettingsDemo.sln ├── SQLiteDemo/ │ ├── SQLiteDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ ├── NavigationHelper.cs │ │ │ ├── ObservableDictionary.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RelayCommand.cs │ │ │ └── SuspensionManager.cs │ │ ├── Converters/ │ │ │ └── DateTimeToStringConverter.cs │ │ ├── CreateDatabase.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── ProjectsPage.xaml │ │ ├── ProjectsPage.xaml.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── SQLiteDemo.csproj │ │ ├── ViewModels/ │ │ │ ├── Customer.cs │ │ │ ├── CustomersViewModel.cs │ │ │ ├── Project.cs │ │ │ ├── ProjectsViewModel.cs │ │ │ ├── TableViewModelBase.cs │ │ │ └── ViewModelBase.cs │ │ └── packages.config │ └── SQLiteDemo.sln ├── ShareContractExample/ │ ├── ContosoCookbook/ │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ ├── NavigationHelper.cs │ │ │ ├── ObservableDictionary.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RelayCommand.cs │ │ │ └── SuspensionManager.cs │ │ ├── ContosoCookbook.csproj │ │ ├── Converters/ │ │ │ ├── ImageSourceToStringConverter.cs │ │ │ └── UserImagesDisplayConverter.cs │ │ ├── Data/ │ │ │ └── Recipes.txt │ │ ├── DataModel/ │ │ │ ├── BindableBase.cs │ │ │ ├── RecipeDataSource.cs │ │ │ └── SampleDataSource.cs │ │ ├── GroupDetailPage.xaml │ │ ├── GroupDetailPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── RecipeDetailPage.xaml │ │ ├── RecipeDetailPage.xaml.cs │ │ └── Strings/ │ │ └── en-US/ │ │ └── Resources.resw │ └── ContosoCookbook.sln ├── SimplePushDemo/ │ ├── SimplePushDemo/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Helpers/ │ │ │ └── PushHandlingHelper.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Services/ │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── SimplePushDemo.csproj │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ └── SimplePushDemo.sln ├── SplashScreen/ │ └── SplashScreen/ │ ├── SplashScreen-Blank/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── SplashScreen-Blank.csproj │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Splash.xaml │ │ │ └── Splash.xaml.cs │ │ └── packages.config │ ├── SplashScreen-Template10/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Services/ │ │ │ └── NavigationService/ │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── SplashScreen-Template10.csproj │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Splash.xaml │ │ │ └── Splash.xaml.cs │ │ └── packages.config │ └── SplashScreen.sln ├── SplitView/ │ ├── SplitView/ │ │ ├── SplitView-Blank/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Mvvm/ │ │ │ │ └── Command.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties/ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ ├── SplitView-Blank.csproj │ │ │ └── Views/ │ │ │ ├── AboutPage.xaml │ │ │ ├── AboutPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── PrivacyPage.xaml │ │ │ ├── PrivacyPage.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── Shell.xaml │ │ │ └── Shell.xaml.cs │ │ └── SplitView-Template10/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Services/ │ │ │ ├── KeyboardService/ │ │ │ │ ├── KeyboardEventArgs.cs │ │ │ │ ├── KeyboardHelper.cs │ │ │ │ └── KeyboardService.cs │ │ │ └── NavigationService/ │ │ │ ├── FrameFacade.cs │ │ │ ├── INavigatable.cs │ │ │ ├── NavigatedEventArgs.cs │ │ │ ├── NavigatingEventArgs.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── SplitView-Template10.csproj │ │ ├── Styles/ │ │ │ └── SplitViewStyles.xaml │ │ ├── Views/ │ │ │ ├── AboutPage.xaml │ │ │ ├── AboutPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── PrivacyPage.xaml │ │ │ ├── PrivacyPage.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── Shell.xaml │ │ │ └── Shell.xaml.cs │ │ └── packages.config │ └── SplitView.sln ├── SuspendResume/ │ ├── Blank1/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Blank1.csproj │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Services/ │ │ │ ├── KeyboardService/ │ │ │ │ ├── KeyboardEventArgs.cs │ │ │ │ ├── KeyboardHelper.cs │ │ │ │ └── KeyboardService.cs │ │ │ └── NavigationService/ │ │ │ ├── FrameFacade.cs │ │ │ ├── INavigatable.cs │ │ │ ├── NavigatedEventArgs.cs │ │ │ ├── NavigatingEventArgs.cs │ │ │ └── NavigationService.cs │ │ ├── ViewModels/ │ │ │ ├── DetailsPageViewModel.cs │ │ │ └── MainPageViewModel.cs │ │ ├── Views/ │ │ │ ├── DetailsPage.xaml │ │ │ ├── DetailsPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ └── SuspendResume.sln ├── TODOFileHandlingSample/ │ ├── TODOFileHandlingSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── Converters.readme.htm │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Models/ │ │ │ ├── Models.readme.htm │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ ├── PivotTabsStyle.xaml │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── TODOFileHandlingSample.csproj │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── ToDoEditorContentDialog.xaml │ │ │ └── ToDoEditorContentDialog.xaml.cs │ │ └── packages.config │ └── TODOFileHandlingSample.sln ├── TODOFilePickerSample/ │ ├── TODOFilePickerSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── Converters.readme.htm │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Models/ │ │ │ ├── Models.readme.htm │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ ├── PivotTabsStyle.xaml │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── TODOFilePickerSample.csproj │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── ToDoEditorContentDialog.xaml │ │ │ └── ToDoEditorContentDialog.xaml.cs │ │ └── packages.config │ └── TODOFilePickerSample.sln ├── TODOPivot/ │ ├── TODOPivot/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── Converters.readme.htm │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Models/ │ │ │ ├── Models.readme.htm │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ ├── PivotTabsStyle.xaml │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── TODOPivot.csproj │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── ToDoEditorContentDialog.xaml │ │ │ └── ToDoEditorContentDialog.xaml.cs │ │ └── packages.config │ └── TODOPivot.sln ├── TODOSQLiteSample/ │ ├── TODOSQLiteSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── Converters.readme.htm │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── Models/ │ │ │ ├── Models.readme.htm │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ ├── TableSQLiteRepoBase.cs │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ ├── NavigationService/ │ │ │ │ ├── INavigatable.cs │ │ │ │ ├── NavigationEventArgs.cs │ │ │ │ ├── NavigationFacade.cs │ │ │ │ └── NavigationService.cs │ │ │ └── SQLiteService/ │ │ │ └── SQLiteService.cs │ │ ├── Styles/ │ │ │ ├── PivotTabsStyle.xaml │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── TODOSQLiteSample.csproj │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── ToDoEditorContentDialog.xaml │ │ │ └── ToDoEditorContentDialog.xaml.cs │ │ └── packages.config │ └── TODOSQLiteSample.sln ├── VideoInterstitialAd/ │ ├── HelloWorld/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationInsights.config │ │ ├── Common/ │ │ │ └── BootStrapper.cs │ │ ├── Converters/ │ │ │ ├── DateTimeFormatConverter.cs │ │ │ └── ValueWhenConverter.cs │ │ ├── HelloWorld.csproj │ │ ├── Models/ │ │ │ ├── TodoItem.cs │ │ │ └── TodoList.cs │ │ ├── Mvvm/ │ │ │ ├── BindableBase.cs │ │ │ ├── Command.cs │ │ │ └── ViewModelBase.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Repositories/ │ │ │ ├── TodoItemRepository.cs │ │ │ └── TodoListRepository.cs │ │ ├── Services/ │ │ │ ├── AdService/ │ │ │ │ ├── AdHelper.cs │ │ │ │ └── AdService.cs │ │ │ ├── FileService/ │ │ │ │ ├── FileHelper.cs │ │ │ │ └── FileService.cs │ │ │ ├── InAppPurchaseService/ │ │ │ │ ├── InAppPurchaseHelper.cs │ │ │ │ └── InAppPurchaseService.cs │ │ │ └── NavigationService/ │ │ │ ├── INavigatable.cs │ │ │ ├── NavigationEventArgs.cs │ │ │ ├── NavigationFacade.cs │ │ │ └── NavigationService.cs │ │ ├── Styles/ │ │ │ └── StarRadioButtonStyle.xaml │ │ ├── ViewModels/ │ │ │ ├── MainPageViewModel.cs │ │ │ ├── TodoItemViewModel.cs │ │ │ └── TodoListViewModel.cs │ │ ├── Views/ │ │ │ ├── MainPage.xaml │ │ │ └── MainPage.xaml.cs │ │ └── packages.config │ └── HelloWorld.sln └── XamlControls/ ├── XamlControls-Blank/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── Models/ │ │ ├── MenuItem.cs │ │ ├── TodoItem.cs │ │ └── TodoList.cs │ ├── Mvvm/ │ │ ├── BindableBase.cs │ │ └── Command.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ViewModels/ │ │ └── SampleViewModel.cs │ ├── Views/ │ │ ├── GeometryControls.xaml │ │ ├── GeometryControls.xaml.cs │ │ ├── InputControls.xaml │ │ ├── InputControls.xaml.cs │ │ ├── ItemsControls.xaml │ │ ├── ItemsControls.xaml.cs │ │ ├── LayoutControls.xaml │ │ ├── LayoutControls.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Transforms.xaml │ │ └── Transforms.xaml.cs │ └── XamlControls-Blank.csproj └── XamlControls.sln