├── .gitignore ├── LICENSE ├── README.md ├── W10 ├── .nuget │ └── NuGet.config ├── DJNanoShow.W10 │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ │ ├── ApplicationLogo.png │ │ ├── Data │ │ │ ├── Biography.htm │ │ │ ├── DiscographyTracks.json │ │ │ └── Social.json │ │ ├── DataImages │ │ │ ├── 05F23907-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── 136AF506-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── 1456185574_18-youtub.png │ │ │ ├── 1456185579_06-facebo.png │ │ │ ├── 1456185583_38-instag.png │ │ │ ├── 1456185609_03-twitte.png │ │ │ ├── 5E60F506-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── 6B2C1708-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── 71A0DD06-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── A44EFB06-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── AD64F506-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── CA073907-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── FB409406-0100-11DB-89CA-0019B92A3933-image.png │ │ │ ├── IconFacebook-1.png │ │ │ ├── IconInstagram.png │ │ │ ├── IconTwitter.png │ │ │ ├── Sin-título-1-1.png │ │ │ ├── djnano.png │ │ │ ├── iconYouTube.png │ │ │ └── nano_bio.jpg │ │ ├── Design │ │ │ ├── DarkGray.png │ │ │ ├── DesignData.json │ │ │ ├── DesignDataHtml.json │ │ │ ├── DesignDataMenu.json │ │ │ ├── DesignDataTD.json │ │ │ ├── DetailDesignData.json │ │ │ ├── LightGray.png │ │ │ └── MediumGray.png │ │ ├── RelatedContentVBP.json │ │ ├── ResponsiveBehaviorsVBP.json │ │ ├── SplashScreen.scale-100.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── Wide310x150Logo.scale-100.png │ ├── Config │ │ ├── ActionConfig.cs │ │ ├── PageConfig.cs │ │ ├── RelatedContentConfig.cs │ │ └── SectionConfigBase.cs │ ├── DJNanoShow.W10.csproj │ ├── DesignTime │ │ └── DesignViewModel.cs │ ├── Extensions │ │ ├── DateTimeExtensions.cs │ │ ├── IEnumerableExtensions.cs │ │ ├── MenuExtensions.cs │ │ └── StringExtensions.cs │ ├── Layouts │ │ ├── Controls │ │ │ ├── DataUpdateInformationControl.xaml │ │ │ ├── DataUpdateInformationControl.xaml.cs │ │ │ ├── HeroImage.xaml │ │ │ ├── HeroImage.xaml.cs │ │ │ ├── SectionListItemHeader.xaml │ │ │ └── SectionListItemHeader.xaml.cs │ │ ├── Detail │ │ │ ├── BaseDetailLayout.cs │ │ │ ├── MultiColumnDetailLayout.xaml │ │ │ ├── MultiColumnDetailLayout.xaml.cs │ │ │ ├── PhotoDetailLayout.xaml │ │ │ ├── PhotoDetailLayout.xaml.cs │ │ │ ├── RelatedContentDetailLayout.xaml │ │ │ ├── RelatedContentDetailLayout.xaml.cs │ │ │ ├── TextDetailLayout.xaml │ │ │ ├── TextDetailLayout.xaml.cs │ │ │ ├── YouTubeDetailLayout.xaml │ │ │ └── YouTubeDetailLayout.xaml.cs │ │ └── List │ │ │ ├── Breakpoints.Large.ContactCard.json │ │ │ ├── Breakpoints.Large.ListBigHorizontalCard.json │ │ │ ├── Breakpoints.Large.ListBigHorizontalCardBox.json │ │ │ ├── Breakpoints.Large.ListBigHorizontalCardGroupedHome.json │ │ │ ├── Breakpoints.Large.json │ │ │ ├── Breakpoints.ListGrouped.json │ │ │ ├── Breakpoints.Medium.ListBigVerticalCard.json │ │ │ ├── Breakpoints.Medium.ListBigVerticalCardBox.json │ │ │ ├── Breakpoints.Medium.ListTextCard.json │ │ │ ├── Breakpoints.Medium.MenuBig.json │ │ │ ├── Breakpoints.Medium.MenuMedium.json │ │ │ ├── Breakpoints.Medium.MenuSmall.json │ │ │ ├── Breakpoints.Medium.MenuText.json │ │ │ ├── Breakpoints.Medium.Photo.json │ │ │ ├── Breakpoints.Medium.json │ │ │ ├── CarouselBig.xaml │ │ │ ├── CarouselBig.xaml.cs │ │ │ ├── CarouselMedium.xaml │ │ │ ├── CarouselMedium.xaml.cs │ │ │ ├── ListBigHorizontalCard.xaml │ │ │ ├── ListBigHorizontalCard.xaml.cs │ │ │ ├── ListBigHorizontalCardBox.xaml │ │ │ ├── ListBigHorizontalCardBox.xaml.cs │ │ │ ├── ListBigVerticalCard.xaml │ │ │ ├── ListBigVerticalCard.xaml.cs │ │ │ ├── ListBigVerticalCardBox.xaml │ │ │ ├── ListBigVerticalCardBox.xaml.cs │ │ │ ├── ListContactCard.xaml │ │ │ ├── ListContactCard.xaml.cs │ │ │ ├── ListGrouped.xaml │ │ │ ├── ListGrouped.xaml.cs │ │ │ ├── ListGroupedHome.xaml │ │ │ ├── ListGroupedHome.xaml.cs │ │ │ ├── ListLayoutBase.cs │ │ │ ├── ListPhoto.xaml │ │ │ ├── ListPhoto.xaml.cs │ │ │ ├── ListTextCard.xaml │ │ │ ├── ListTextCard.xaml.cs │ │ │ ├── MenuBig.xaml │ │ │ ├── MenuBig.xaml.cs │ │ │ ├── MenuMedium.xaml │ │ │ ├── MenuMedium.xaml.cs │ │ │ ├── MenuSmall.xaml │ │ │ ├── MenuSmall.xaml.cs │ │ │ ├── MenuText.xaml │ │ │ └── MenuText.xaml.cs │ ├── Navigation │ │ ├── AppNavigation.cs │ │ ├── NavigationNode.cs │ │ └── NavigationTemplateSelector.cs │ ├── Package.appxmanifest │ ├── Pages │ │ ├── AboutPage.xaml │ │ ├── AboutPage.xaml.cs │ │ ├── BiographyListPage.xaml │ │ ├── BiographyListPage.xaml.cs │ │ ├── DiscographyDetailPage.xaml │ │ ├── DiscographyDetailPage.xaml.cs │ │ ├── DiscographyListPage.xaml │ │ ├── DiscographyListPage.xaml.cs │ │ ├── DiscographyTracksDetailPage.xaml │ │ ├── DiscographyTracksDetailPage.xaml.cs │ │ ├── DiscographyTracksListPage.xaml │ │ ├── DiscographyTracksListPage.xaml.cs │ │ ├── FacebookDetailPage.xaml │ │ ├── FacebookDetailPage.xaml.cs │ │ ├── FacebookListPage.xaml │ │ ├── FacebookListPage.xaml.cs │ │ ├── FavoritesPage.xaml │ │ ├── FavoritesPage.xaml.cs │ │ ├── GalleryDetailPage.xaml │ │ ├── GalleryDetailPage.xaml.cs │ │ ├── GalleryListPage.xaml │ │ ├── GalleryListPage.xaml.cs │ │ ├── HomePage.xaml │ │ ├── HomePage.xaml.cs │ │ ├── InstagramDetailPage.xaml │ │ ├── InstagramDetailPage.xaml.cs │ │ ├── InstagramListPage.xaml │ │ ├── InstagramListPage.xaml.cs │ │ ├── SearchPage.xaml │ │ ├── SearchPage.xaml.cs │ │ ├── SocialListPage.xaml │ │ ├── SocialListPage.xaml.cs │ │ ├── ToursDetailPage.xaml │ │ ├── ToursDetailPage.xaml.cs │ │ ├── ToursListPage.xaml │ │ ├── ToursListPage.xaml.cs │ │ ├── TwitterListPage.xaml │ │ ├── TwitterListPage.xaml.cs │ │ ├── VideosDetailPage.xaml │ │ ├── VideosDetailPage.xaml.cs │ │ ├── VideosListPage.xaml │ │ ├── VideosListPage.xaml.cs │ │ ├── YouTubeDetailPage.xaml │ │ ├── YouTubeDetailPage.xaml.cs │ │ ├── YouTubeListPage.xaml │ │ └── YouTubeListPage.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Sections │ │ ├── BiographyConfig.cs │ │ ├── Discography1Schema.cs │ │ ├── DiscographyConfig.cs │ │ ├── DiscographyTracks1Schema.cs │ │ ├── DiscographyTracksConfig.cs │ │ ├── FacebookConfig.cs │ │ ├── GalleryConfig.cs │ │ ├── InstagramConfig.cs │ │ ├── SocialConfig.cs │ │ ├── Tours1Schema.cs │ │ ├── ToursConfig.cs │ │ ├── TwitterConfig.cs │ │ ├── VideosConfig.cs │ │ └── YouTubeConfig.cs │ ├── Service References │ │ └── Application Insights │ │ │ └── ConnectedService.json │ ├── Services │ │ ├── DeviceFamilyService.cs │ │ ├── FullScreenService.cs │ │ ├── RoamingService.cs │ │ ├── TileServices.cs │ │ └── UserFavorites.cs │ ├── Shell.xaml │ ├── Shell.xaml.cs │ ├── Strings │ │ └── Resources.resw │ ├── Styles │ │ ├── AppBarButtons.xaml │ │ ├── AppColors.xaml │ │ ├── AppTheme.xaml │ │ ├── ButtonStyles.xaml │ │ ├── DefaultTheme.xaml │ │ ├── DetailStyles.xaml │ │ ├── FontSizes.xaml │ │ └── SectionListStyles.xaml │ ├── Triggers │ │ ├── IsTypePresentStateTrigger.cs │ │ ├── OrientationStateTrigger.cs │ │ └── PlatformStateTrigger.cs │ ├── ViewModels │ │ ├── AboutThisAppViewModel.cs │ │ ├── AdvertisingViewModel.cs │ │ ├── ComposedItemViewModel.cs │ │ ├── DetailViewModel.cs │ │ ├── FavoritesViewModel.cs │ │ ├── GroupedItemViewModel.cs │ │ ├── GroupedListViewModel.cs │ │ ├── ItemViewModel.cs │ │ ├── ListViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── PageViewModelBase.cs │ │ ├── PrivacyViewModel.cs │ │ ├── SearchViewModel.cs │ │ └── ShellViewModel.cs │ └── project.json ├── DJNanoShow.sln └── readme.txt └── W8 ├── .nuget ├── NuGet.config ├── NuGet.targets └── nuget.exe ├── DJNanoShow.Shared ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AppTitleImage.png │ ├── ApplicationBackgroundImage.jpg │ ├── ApplicationLogo.png │ ├── Data │ │ ├── Biography.htm │ │ └── Social.json │ ├── DataImages │ │ ├── IconFacebook.png │ │ ├── IconInstagram.png │ │ ├── IconTwitter.png │ │ ├── Tile1.jpg │ │ ├── Tile2.jpg │ │ ├── Tile3.jpg │ │ ├── Tile4.jpg │ │ ├── Tile5.jpg │ │ ├── Tile6.jpg │ │ ├── Tile7.jpg │ │ ├── Tile8.jpg │ │ ├── djnano1.jpg │ │ ├── iconYouTube.png │ │ ├── layoutFacebook.png │ │ ├── layoutInstagram.png │ │ ├── layoutTwitter.png │ │ ├── layoutYoutube.png │ │ ├── nanobio.jpg │ │ └── yticon.png │ └── Design │ │ ├── DarkGray.png │ │ ├── DesignData.json │ │ ├── DesignDataHtml.json │ │ ├── DesignDataMenu.json │ │ ├── DesignDataTD.json │ │ ├── LightGray.png │ │ └── MediumGray.png ├── Commands │ └── PlatformCommands.cs ├── Config │ ├── ActionConfig.cs │ ├── ConfigBase.cs │ ├── PageConfig.cs │ └── SectionConfigBase.cs ├── Controls │ ├── ErrorNotificationControl.xaml │ └── ErrorNotificationControl.xaml.cs ├── DJNanoShow.Shared.projItems ├── DJNanoShow.Shared.shproj ├── DesignTime │ └── DesignViewModel.cs ├── MenuExtensions.cs ├── PageBase.cs ├── Sections │ ├── BiographyConfig.cs │ ├── Discography1Schema.cs │ ├── DiscographyConfig.cs │ ├── FacebookConfig.cs │ ├── InstagramConfig.cs │ ├── SocialConfig.cs │ ├── Tours1Schema.cs │ ├── ToursConfig.cs │ ├── TwitterConfig.cs │ ├── VideosConfig.cs │ └── YouTubeConfig.cs ├── Services │ └── TileServices.cs ├── Strings │ └── Resources.resw ├── Styles │ ├── AppBarButtons.xaml │ ├── AppTheme.xaml │ └── DefaultTheme.xaml ├── ViewModels │ ├── AboutThisAppViewModel.cs │ ├── ComposedItemViewModel.cs │ ├── DataViewModelBase.cs │ ├── DetailViewModel.cs │ ├── ItemViewModel.cs │ ├── ListViewModel.cs │ ├── MainViewModel.cs │ └── PrivacyViewModel.cs └── Views │ ├── BiographyListPage.cs │ ├── DiscographyDetailPage.cs │ ├── DiscographyListPage.cs │ ├── FacebookDetailPage.cs │ ├── FacebookListPage.cs │ ├── ImageViewer.cs │ ├── InstagramDetailPage.cs │ ├── InstagramListPage.cs │ ├── MainPage.cs │ ├── SocialListPage.cs │ ├── ToursListPage.cs │ ├── TwitterListPage.cs │ ├── VideosDetailPage.cs │ ├── VideosListPage.cs │ ├── YouTubeDetailPage.cs │ └── YouTubeListPage.cs ├── DJNanoShow.Windows ├── AppFlyouts │ ├── AboutFlyout.xaml │ ├── AboutFlyout.xaml.cs │ ├── PrivacyFlyout.xaml │ └── PrivacyFlyout.xaml.cs ├── ApplicationInsights.config ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SmallLogo.scale-140.png │ ├── SmallLogo.scale-180.png │ ├── SplashScreen.scale-100.png │ ├── Square310x310Logo.scale-100.png │ ├── Square70x70Logo.scale-100.png │ ├── StoreLogo.scale-100.png │ └── Wide310x150Logo.scale-100.png ├── Controls │ ├── ImageViewer.xaml │ ├── ImageViewer.xaml.cs │ ├── PageHeaderControl.xaml │ ├── PageHeaderControl.xaml.cs │ ├── YouTubeViewer.xaml │ └── YouTubeViewer.xaml.cs ├── DJNanoShow.Windows.csproj ├── DJNanoShow.Windows_StoreKey.pfx ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.StoreAssociation.xml ├── Package.appxmanifest ├── Properties │ └── AssemblyInfo.cs ├── Service References │ └── Application Insights │ │ └── ConnectedService.json ├── Styles │ ├── ButtonStyles.xaml │ ├── FontSizes.xaml │ ├── GridView.xaml │ ├── Layouts │ │ ├── DetailLayouts.xaml │ │ └── ListLayouts.xaml │ └── PlatformStyles.xaml ├── Views │ ├── BiographyListPage.xaml │ ├── BiographyListPage.xaml.cs │ ├── DiscographyDetailPage.xaml │ ├── DiscographyDetailPage.xaml.cs │ ├── DiscographyListPage.xaml │ ├── DiscographyListPage.xaml.cs │ ├── FacebookDetailPage.xaml │ ├── FacebookDetailPage.xaml.cs │ ├── FacebookListPage.xaml │ ├── FacebookListPage.xaml.cs │ ├── InstagramDetailPage.xaml │ ├── InstagramDetailPage.xaml.cs │ ├── InstagramListPage.xaml │ ├── InstagramListPage.xaml.cs │ ├── SocialListPage.xaml │ ├── SocialListPage.xaml.cs │ ├── ToursListPage.xaml │ ├── ToursListPage.xaml.cs │ ├── TwitterListPage.xaml │ ├── TwitterListPage.xaml.cs │ ├── VideosDetailPage.xaml │ ├── VideosDetailPage.xaml.cs │ ├── VideosListPage.xaml │ ├── VideosListPage.xaml.cs │ ├── YouTubeDetailPage.xaml │ ├── YouTubeDetailPage.xaml.cs │ ├── YouTubeListPage.xaml │ └── YouTubeListPage.xaml.cs └── packages.config ├── DJNanoShow.WindowsPhone ├── AboutThisAppPage.xaml ├── AboutThisAppPage.xaml.cs ├── ApplicationInsights.config ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SmallLogo.scale-140.png │ ├── SmallLogo.scale-240.png │ ├── SplashScreen.scale-100.png │ ├── Square71x71Logo.scale-100.png │ ├── StoreLogo.scale-100.png │ └── WideLogo.scale-100.png ├── Controls │ ├── ConnectionNotificationControl.xaml │ ├── ConnectionNotificationControl.xaml.cs │ ├── ImageViewer.xaml │ ├── ImageViewer.xaml.cs │ ├── YouTubeViewer.xaml │ └── YouTubeViewer.xaml.cs ├── DJNanoShow.WindowsPhone.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.StoreAssociation.xml ├── Package.appxmanifest ├── Properties │ └── AssemblyInfo.cs ├── Service References │ └── Application Insights │ │ └── ConnectedService.json ├── Styles │ ├── ButtonStyles.xaml │ ├── FontSizes.xaml │ ├── GridView.xaml │ ├── Layouts │ │ ├── DetailLayouts.xaml │ │ └── ListLayouts.xaml │ └── PlatformStyles.xaml ├── Views │ ├── BiographyListPage.xaml │ ├── BiographyListPage.xaml.cs │ ├── DiscographyDetailPage.xaml │ ├── DiscographyDetailPage.xaml.cs │ ├── DiscographyListPage.xaml │ ├── DiscographyListPage.xaml.cs │ ├── FacebookDetailPage.xaml │ ├── FacebookDetailPage.xaml.cs │ ├── FacebookListPage.xaml │ ├── FacebookListPage.xaml.cs │ ├── InstagramDetailPage.xaml │ ├── InstagramDetailPage.xaml.cs │ ├── InstagramListPage.xaml │ ├── InstagramListPage.xaml.cs │ ├── SocialListPage.xaml │ ├── SocialListPage.xaml.cs │ ├── ToursListPage.xaml │ ├── ToursListPage.xaml.cs │ ├── TwitterListPage.xaml │ ├── TwitterListPage.xaml.cs │ ├── VideosDetailPage.xaml │ ├── VideosDetailPage.xaml.cs │ ├── VideosListPage.xaml │ ├── VideosListPage.xaml.cs │ ├── YouTubeDetailPage.xaml │ ├── YouTubeDetailPage.xaml.cs │ ├── YouTubeListPage.xaml │ └── YouTubeListPage.xaml.cs └── packages.config ├── DJNanoShow.sln └── Store └── 1.0.0.0 └── Assets └── ApplicationIcon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/README.md -------------------------------------------------------------------------------- /W10/.nuget/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/.nuget/NuGet.config -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/App.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/App.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ApplicationInsights.config -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/ApplicationLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/ApplicationLogo.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Data/Biography.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Data/Biography.htm -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Data/DiscographyTracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Data/DiscographyTracks.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Data/Social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Data/Social.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/05F23907-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/05F23907-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/136AF506-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/136AF506-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/1456185574_18-youtub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/1456185574_18-youtub.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/1456185579_06-facebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/1456185579_06-facebo.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/1456185583_38-instag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/1456185583_38-instag.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/1456185609_03-twitte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/1456185609_03-twitte.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/5E60F506-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/5E60F506-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/6B2C1708-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/6B2C1708-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/71A0DD06-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/71A0DD06-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/A44EFB06-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/A44EFB06-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/AD64F506-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/AD64F506-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/CA073907-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/CA073907-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/FB409406-0100-11DB-89CA-0019B92A3933-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/FB409406-0100-11DB-89CA-0019B92A3933-image.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/IconFacebook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/IconFacebook-1.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/IconInstagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/IconInstagram.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/IconTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/IconTwitter.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/Sin-título-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/Sin-título-1-1.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/djnano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/djnano.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/iconYouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/iconYouTube.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/DataImages/nano_bio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/DataImages/nano_bio.jpg -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DarkGray.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DesignData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DesignData.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DesignDataHtml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DesignDataHtml.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DesignDataMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DesignDataMenu.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DesignDataTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DesignDataTD.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/DetailDesignData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/DetailDesignData.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/LightGray.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Design/MediumGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Design/MediumGray.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/RelatedContentVBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/RelatedContentVBP.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/ResponsiveBehaviorsVBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/ResponsiveBehaviorsVBP.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Config/ActionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Config/ActionConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Config/PageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Config/PageConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Config/RelatedContentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Config/RelatedContentConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Config/SectionConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Config/SectionConfigBase.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/DJNanoShow.W10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/DJNanoShow.W10.csproj -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/DesignTime/DesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/DesignTime/DesignViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Extensions/MenuExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Extensions/MenuExtensions.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/DataUpdateInformationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/DataUpdateInformationControl.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/DataUpdateInformationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/DataUpdateInformationControl.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/HeroImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/HeroImage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/HeroImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/HeroImage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/SectionListItemHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/SectionListItemHeader.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Controls/SectionListItemHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Controls/SectionListItemHeader.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/BaseDetailLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/BaseDetailLayout.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/MultiColumnDetailLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/MultiColumnDetailLayout.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/MultiColumnDetailLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/MultiColumnDetailLayout.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/PhotoDetailLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/PhotoDetailLayout.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/PhotoDetailLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/PhotoDetailLayout.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/RelatedContentDetailLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/RelatedContentDetailLayout.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/RelatedContentDetailLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/RelatedContentDetailLayout.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/TextDetailLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/TextDetailLayout.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/TextDetailLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/TextDetailLayout.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/YouTubeDetailLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/YouTubeDetailLayout.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/Detail/YouTubeDetailLayout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/Detail/YouTubeDetailLayout.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ContactCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ContactCard.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCard.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCardBox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCardBox.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCardGroupedHome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.ListBigHorizontalCardGroupedHome.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Large.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.ListGrouped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.ListGrouped.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListBigVerticalCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListBigVerticalCard.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListBigVerticalCardBox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListBigVerticalCardBox.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListTextCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.ListTextCard.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuBig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuBig.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuMedium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuMedium.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuSmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuSmall.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.MenuText.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.Photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.Photo.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/Breakpoints.Medium.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/CarouselBig.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/CarouselBig.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/CarouselBig.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/CarouselBig.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/CarouselMedium.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/CarouselMedium.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/CarouselMedium.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/CarouselMedium.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCard.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCard.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCardBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCardBox.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCardBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigHorizontalCardBox.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCard.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCard.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCardBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCardBox.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCardBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListBigVerticalCardBox.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListContactCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListContactCard.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListContactCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListContactCard.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListGrouped.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListGrouped.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListGrouped.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListGrouped.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListGroupedHome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListGroupedHome.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListGroupedHome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListGroupedHome.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListLayoutBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListLayoutBase.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListPhoto.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListPhoto.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListPhoto.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListPhoto.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListTextCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListTextCard.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/ListTextCard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/ListTextCard.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuBig.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuBig.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuBig.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuBig.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuMedium.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuMedium.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuMedium.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuMedium.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuSmall.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuSmall.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuSmall.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuSmall.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuText.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Layouts/List/MenuText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Layouts/List/MenuText.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Navigation/AppNavigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Navigation/AppNavigation.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Navigation/NavigationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Navigation/NavigationNode.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Navigation/NavigationTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Navigation/NavigationTemplateSelector.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Package.appxmanifest -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/AboutPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/AboutPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/BiographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/BiographyListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/BiographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/BiographyListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyTracksDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyTracksDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyTracksDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyTracksDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyTracksListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyTracksListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/DiscographyTracksListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/DiscographyTracksListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FacebookDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FacebookDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FacebookDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FacebookDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FacebookListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FacebookListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FacebookListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FacebookListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FavoritesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FavoritesPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/FavoritesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/FavoritesPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/GalleryDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/GalleryDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/GalleryDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/GalleryDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/GalleryListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/GalleryListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/GalleryListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/GalleryListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/HomePage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/HomePage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/InstagramDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/InstagramDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/InstagramDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/InstagramDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/InstagramListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/InstagramListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/InstagramListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/InstagramListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/SearchPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/SearchPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/SocialListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/SocialListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/SocialListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/SocialListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/ToursDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/ToursDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/ToursDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/ToursDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/ToursListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/ToursListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/ToursListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/ToursListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/TwitterListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/TwitterListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/TwitterListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/TwitterListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/VideosDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/VideosDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/VideosDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/VideosDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/VideosListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/VideosListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/VideosListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/VideosListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/YouTubeDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/YouTubeDetailPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/YouTubeDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/YouTubeDetailPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/YouTubeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/YouTubeListPage.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Pages/YouTubeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Pages/YouTubeListPage.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Properties/Default.rd.xml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/BiographyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/BiographyConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/Discography1Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/Discography1Schema.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/DiscographyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/DiscographyConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/DiscographyTracks1Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/DiscographyTracks1Schema.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/DiscographyTracksConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/DiscographyTracksConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/FacebookConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/FacebookConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/GalleryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/GalleryConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/InstagramConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/InstagramConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/SocialConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/SocialConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/Tours1Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/Tours1Schema.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/ToursConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/ToursConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/TwitterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/TwitterConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/VideosConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/VideosConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Sections/YouTubeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Sections/YouTubeConfig.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Services/DeviceFamilyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Services/DeviceFamilyService.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Services/FullScreenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Services/FullScreenService.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Services/RoamingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Services/RoamingService.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Services/TileServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Services/TileServices.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Services/UserFavorites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Services/UserFavorites.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Shell.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Shell.xaml.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Strings/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Strings/Resources.resw -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/AppBarButtons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/AppBarButtons.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/AppColors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/AppColors.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/AppTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/AppTheme.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/DefaultTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/DefaultTheme.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/DetailStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/DetailStyles.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Styles/SectionListStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Styles/SectionListStyles.xaml -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Triggers/IsTypePresentStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Triggers/IsTypePresentStateTrigger.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Triggers/OrientationStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Triggers/OrientationStateTrigger.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/Triggers/PlatformStateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/Triggers/PlatformStateTrigger.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/AboutThisAppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/AboutThisAppViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/AdvertisingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/AdvertisingViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/ComposedItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/ComposedItemViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/DetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/DetailViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/FavoritesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/FavoritesViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/GroupedItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/GroupedItemViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/GroupedListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/GroupedListViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/ListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/ListViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/PageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/PageViewModelBase.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/PrivacyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/PrivacyViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/SearchViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /W10/DJNanoShow.W10/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.W10/project.json -------------------------------------------------------------------------------- /W10/DJNanoShow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/DJNanoShow.sln -------------------------------------------------------------------------------- /W10/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W10/readme.txt -------------------------------------------------------------------------------- /W8/.nuget/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/.nuget/NuGet.config -------------------------------------------------------------------------------- /W8/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/.nuget/NuGet.targets -------------------------------------------------------------------------------- /W8/.nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/.nuget/nuget.exe -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/App.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/App.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/AppTitleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/AppTitleImage.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/ApplicationBackgroundImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/ApplicationBackgroundImage.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/ApplicationLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/ApplicationLogo.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Data/Biography.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Data/Biography.htm -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Data/Social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Data/Social.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/IconFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/IconFacebook.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/IconInstagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/IconInstagram.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/IconTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/IconTwitter.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile1.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile2.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile3.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile4.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile5.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile6.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile7.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/Tile8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/Tile8.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/djnano1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/djnano1.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/iconYouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/iconYouTube.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/layoutFacebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/layoutFacebook.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/layoutInstagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/layoutInstagram.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/layoutTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/layoutTwitter.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/layoutYoutube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/layoutYoutube.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/nanobio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/nanobio.jpg -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/DataImages/yticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/DataImages/yticon.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/DarkGray.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/DesignData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/DesignData.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/DesignDataHtml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/DesignDataHtml.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/DesignDataMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/DesignDataMenu.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/DesignDataTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/DesignDataTD.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/LightGray.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Assets/Design/MediumGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Assets/Design/MediumGray.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Commands/PlatformCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Commands/PlatformCommands.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Config/ActionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Config/ActionConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Config/ConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Config/ConfigBase.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Config/PageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Config/PageConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Config/SectionConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Config/SectionConfigBase.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Controls/ErrorNotificationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Controls/ErrorNotificationControl.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Controls/ErrorNotificationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Controls/ErrorNotificationControl.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/DJNanoShow.Shared.projItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/DJNanoShow.Shared.projItems -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/DJNanoShow.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/DJNanoShow.Shared.shproj -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/DesignTime/DesignViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/DesignTime/DesignViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/MenuExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/MenuExtensions.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/PageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/PageBase.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/BiographyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/BiographyConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/Discography1Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/Discography1Schema.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/DiscographyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/DiscographyConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/FacebookConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/FacebookConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/InstagramConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/InstagramConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/SocialConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/SocialConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/Tours1Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/Tours1Schema.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/ToursConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/ToursConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/TwitterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/TwitterConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/VideosConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/VideosConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Sections/YouTubeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Sections/YouTubeConfig.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Services/TileServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Services/TileServices.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Strings/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Strings/Resources.resw -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Styles/AppBarButtons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Styles/AppBarButtons.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Styles/AppTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Styles/AppTheme.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Styles/DefaultTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Styles/DefaultTheme.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/AboutThisAppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/AboutThisAppViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/ComposedItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/ComposedItemViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/DataViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/DataViewModelBase.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/DetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/DetailViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/ListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/ListViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/ViewModels/PrivacyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/ViewModels/PrivacyViewModel.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/BiographyListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/BiographyListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/DiscographyDetailPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/DiscographyDetailPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/DiscographyListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/DiscographyListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/FacebookDetailPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/FacebookDetailPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/FacebookListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/FacebookListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/ImageViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/ImageViewer.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/InstagramDetailPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/InstagramDetailPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/InstagramListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/InstagramListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/MainPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/SocialListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/SocialListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/ToursListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/ToursListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/TwitterListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/TwitterListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/VideosDetailPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/VideosDetailPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/VideosListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/VideosListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/YouTubeDetailPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/YouTubeDetailPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Shared/Views/YouTubeListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Shared/Views/YouTubeListPage.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/AppFlyouts/AboutFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/AppFlyouts/AboutFlyout.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/AppFlyouts/AboutFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/AppFlyouts/AboutFlyout.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/AppFlyouts/PrivacyFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/AppFlyouts/PrivacyFlyout.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/AppFlyouts/PrivacyFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/AppFlyouts/PrivacyFlyout.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/ApplicationInsights.config -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/SmallLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/SmallLogo.scale-140.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/SmallLogo.scale-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/SmallLogo.scale-180.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/ImageViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/ImageViewer.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/ImageViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/ImageViewer.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/PageHeaderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/PageHeaderControl.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/PageHeaderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/PageHeaderControl.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/YouTubeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/YouTubeViewer.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Controls/YouTubeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Controls/YouTubeViewer.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/DJNanoShow.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/DJNanoShow.Windows.csproj -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/DJNanoShow.Windows_StoreKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/DJNanoShow.Windows_StoreKey.pfx -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/MainPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/MainPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/GridView.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/Layouts/DetailLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/Layouts/DetailLayouts.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/Layouts/ListLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/Layouts/ListLayouts.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Styles/PlatformStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Styles/PlatformStyles.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/BiographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/BiographyListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/BiographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/BiographyListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/DiscographyDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/DiscographyDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/DiscographyDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/DiscographyDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/DiscographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/DiscographyListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/DiscographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/DiscographyListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/FacebookDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/FacebookDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/FacebookDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/FacebookDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/FacebookListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/FacebookListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/FacebookListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/FacebookListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/InstagramDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/InstagramDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/InstagramDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/InstagramDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/InstagramListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/InstagramListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/InstagramListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/InstagramListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/SocialListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/SocialListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/SocialListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/SocialListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/ToursListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/ToursListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/ToursListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/ToursListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/TwitterListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/TwitterListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/TwitterListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/TwitterListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/VideosDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/VideosDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/VideosDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/VideosDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/VideosListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/VideosListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/VideosListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/VideosListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/YouTubeDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/YouTubeDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/YouTubeDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/YouTubeDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/YouTubeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/YouTubeListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/Views/YouTubeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/Views/YouTubeListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.Windows/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.Windows/packages.config -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/AboutThisAppPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/AboutThisAppPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/AboutThisAppPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/AboutThisAppPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/ApplicationInsights.config -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-140.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/ConnectionNotificationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/ConnectionNotificationControl.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/ConnectionNotificationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/ConnectionNotificationControl.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/ImageViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/ImageViewer.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/ImageViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/ImageViewer.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/YouTubeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/YouTubeViewer.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Controls/YouTubeViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Controls/YouTubeViewer.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/DJNanoShow.WindowsPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/DJNanoShow.WindowsPhone.csproj -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/MainPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Package.appxmanifest -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/GridView.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/Layouts/DetailLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/Layouts/DetailLayouts.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/Layouts/ListLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/Layouts/ListLayouts.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Styles/PlatformStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Styles/PlatformStyles.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/BiographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/BiographyListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/BiographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/BiographyListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/DiscographyDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/DiscographyDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/DiscographyDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/DiscographyDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/DiscographyListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/DiscographyListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/DiscographyListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/DiscographyListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/FacebookDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/FacebookDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/FacebookDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/FacebookDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/FacebookListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/FacebookListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/FacebookListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/FacebookListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/InstagramDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/InstagramDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/InstagramDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/InstagramDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/InstagramListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/InstagramListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/InstagramListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/InstagramListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/SocialListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/SocialListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/SocialListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/SocialListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/ToursListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/ToursListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/ToursListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/ToursListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/TwitterListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/TwitterListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/TwitterListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/TwitterListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/VideosDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/VideosDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/VideosDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/VideosDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/VideosListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/VideosListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/VideosListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/VideosListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/YouTubeDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/YouTubeDetailPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/YouTubeDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/YouTubeDetailPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/YouTubeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/YouTubeListPage.xaml -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/Views/YouTubeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/Views/YouTubeListPage.xaml.cs -------------------------------------------------------------------------------- /W8/DJNanoShow.WindowsPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.WindowsPhone/packages.config -------------------------------------------------------------------------------- /W8/DJNanoShow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/DJNanoShow.sln -------------------------------------------------------------------------------- /W8/Store/1.0.0.0/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wasteam/DJNanoSampleApp/HEAD/W8/Store/1.0.0.0/Assets/ApplicationIcon.png --------------------------------------------------------------------------------