├── Licence.txt ├── MediaViewer.sln ├── MediaViewer ├── App.xaml ├── App.xaml.cs ├── Bin │ └── Release │ │ ├── AppManifest.xaml │ │ ├── MediaViewer.dll │ │ ├── MediaViewer.pdb │ │ ├── MediaViewer.xap │ │ ├── Microsoft.Phone.Controls.dll │ │ ├── Microsoft.Phone.Controls.xml │ │ ├── WMAppManifest.xml │ │ └── mediaviewer-silverlight-icon.png ├── Converters │ ├── DurationValueConverter.cs │ └── PictureConverter.cs ├── MediaViewer.csproj ├── Pages │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── PicturePreviewPage.xaml │ ├── PicturePreviewPage.xaml.cs │ ├── SongDetailsPage.xaml │ └── SongDetailsPage.xaml.cs ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── SampleData │ └── MainViewModelSampleData.xaml ├── SplashScreenImage.jpg ├── ViewModels │ ├── CategoryDetailsViewModel.cs │ ├── CategoryItem.cs │ ├── MusicCategoryModel.cs │ ├── PicturePreviewModel.cs │ └── PicturesCategoryModel.cs └── mediaviewer-silverlight-icon.png ├── README.md ├── doc ├── screenshots │ ├── MainPage_Music.PNG │ ├── MainPage_Pictures.PNG │ ├── PicturePreview.PNG │ └── SongDetails.PNG └── ui-comparison.png └── mediaviewer-silverlight-icon.png /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/Licence.txt -------------------------------------------------------------------------------- /MediaViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer.sln -------------------------------------------------------------------------------- /MediaViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/App.xaml -------------------------------------------------------------------------------- /MediaViewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/App.xaml.cs -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/AppManifest.xaml -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/MediaViewer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/MediaViewer.dll -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/MediaViewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/MediaViewer.pdb -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/MediaViewer.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/MediaViewer.xap -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/Microsoft.Phone.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/Microsoft.Phone.Controls.dll -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/Microsoft.Phone.Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/Microsoft.Phone.Controls.xml -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/WMAppManifest.xml -------------------------------------------------------------------------------- /MediaViewer/Bin/Release/mediaviewer-silverlight-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Bin/Release/mediaviewer-silverlight-icon.png -------------------------------------------------------------------------------- /MediaViewer/Converters/DurationValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Converters/DurationValueConverter.cs -------------------------------------------------------------------------------- /MediaViewer/Converters/PictureConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Converters/PictureConverter.cs -------------------------------------------------------------------------------- /MediaViewer/MediaViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/MediaViewer.csproj -------------------------------------------------------------------------------- /MediaViewer/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/MainPage.xaml -------------------------------------------------------------------------------- /MediaViewer/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /MediaViewer/Pages/PicturePreviewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/PicturePreviewPage.xaml -------------------------------------------------------------------------------- /MediaViewer/Pages/PicturePreviewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/PicturePreviewPage.xaml.cs -------------------------------------------------------------------------------- /MediaViewer/Pages/SongDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/SongDetailsPage.xaml -------------------------------------------------------------------------------- /MediaViewer/Pages/SongDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Pages/SongDetailsPage.xaml.cs -------------------------------------------------------------------------------- /MediaViewer/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MediaViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MediaViewer/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MediaViewer/SampleData/MainViewModelSampleData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/SampleData/MainViewModelSampleData.xaml -------------------------------------------------------------------------------- /MediaViewer/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/SplashScreenImage.jpg -------------------------------------------------------------------------------- /MediaViewer/ViewModels/CategoryDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/ViewModels/CategoryDetailsViewModel.cs -------------------------------------------------------------------------------- /MediaViewer/ViewModels/CategoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/ViewModels/CategoryItem.cs -------------------------------------------------------------------------------- /MediaViewer/ViewModels/MusicCategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/ViewModels/MusicCategoryModel.cs -------------------------------------------------------------------------------- /MediaViewer/ViewModels/PicturePreviewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/ViewModels/PicturePreviewModel.cs -------------------------------------------------------------------------------- /MediaViewer/ViewModels/PicturesCategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/ViewModels/PicturesCategoryModel.cs -------------------------------------------------------------------------------- /MediaViewer/mediaviewer-silverlight-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/MediaViewer/mediaviewer-silverlight-icon.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/README.md -------------------------------------------------------------------------------- /doc/screenshots/MainPage_Music.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/doc/screenshots/MainPage_Music.PNG -------------------------------------------------------------------------------- /doc/screenshots/MainPage_Pictures.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/doc/screenshots/MainPage_Pictures.PNG -------------------------------------------------------------------------------- /doc/screenshots/PicturePreview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/doc/screenshots/PicturePreview.PNG -------------------------------------------------------------------------------- /doc/screenshots/SongDetails.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/doc/screenshots/SongDetails.PNG -------------------------------------------------------------------------------- /doc/ui-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/doc/ui-comparison.png -------------------------------------------------------------------------------- /mediaviewer-silverlight-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/media-viewer/HEAD/mediaviewer-silverlight-icon.png --------------------------------------------------------------------------------