├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md └── Samples ├── HighPerformanceDataBinding ├── HighPerformanceDataBinding.sln ├── HighPerformanceDataBinding.sln.DotSettings ├── HighPerformanceDataBinding │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Images │ │ │ └── ButterflyWorld_1920x1200.jpg │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── HighPerformanceDataBinding.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ │ └── Book.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── ViewModels │ │ ├── MainPageViewModel.cs │ │ └── ViewModelBase.cs │ └── project.json └── README.md ├── PatientChart ├── PatientChart.sln ├── PatientChart │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Patient.cs │ ├── PatientChart.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── project.json └── README.md ├── SQLiteSample ├── README.md ├── SQLiteSample.sln └── SQLiteSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── SQLiteSample.csproj │ └── project.json └── VideoCaptureWithEditing ├── README.md ├── VideoCaptureWithEditing.sln └── VideoCaptureWithEditing ├── App.xaml ├── App.xaml.cs ├── Assets ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LockScreenLogo.scale-200.png ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png └── Wide310x150Logo.scale-400.png ├── Common └── CameraRotationHelper.cs ├── Converters └── ThumbToolTipConverter.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── VideoCaptureWithEditing.csproj ├── Views ├── EditingPage.xaml ├── EditingPage.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── PlaybackPage.xaml ├── PlaybackPage.xaml.cs ├── RecordingPage.xaml └── RecordingPage.xaml.cs └── project.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding.sln -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding.sln.DotSettings -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/App.xaml -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/App.xaml.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Images/ButterflyWorld_1920x1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Images/ButterflyWorld_1920x1200.jpg -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/HighPerformanceDataBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/HighPerformanceDataBinding.csproj -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/MainPage.xaml -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Models/Book.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/Annotations.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/HighPerformanceDataBinding/project.json -------------------------------------------------------------------------------- /Samples/HighPerformanceDataBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/HighPerformanceDataBinding/README.md -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart.sln -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/App.xaml -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/App.xaml.cs -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/MainPage.xaml -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Patient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Patient.cs -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/PatientChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/PatientChart.csproj -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/PatientChart/PatientChart/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/PatientChart/project.json -------------------------------------------------------------------------------- /Samples/PatientChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/PatientChart/README.md -------------------------------------------------------------------------------- /Samples/SQLiteSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/README.md -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample.sln -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/App.xaml -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/MainPage.xaml -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/SQLiteSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/SQLiteSample.csproj -------------------------------------------------------------------------------- /Samples/SQLiteSample/SQLiteSample/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/SQLiteSample/SQLiteSample/project.json -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/README.md -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing.sln -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/App.xaml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/App.xaml.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Common/CameraRotationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Common/CameraRotationHelper.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Converters/ThumbToolTipConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Converters/ThumbToolTipConverter.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Package.appxmanifest -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/VideoCaptureWithEditing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/VideoCaptureWithEditing.csproj -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/EditingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/EditingPage.xaml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/EditingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/EditingPage.xaml.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/MainPage.xaml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/PlaybackPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/PlaybackPage.xaml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/PlaybackPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/PlaybackPage.xaml.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/RecordingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/RecordingPage.xaml -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/RecordingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/Views/RecordingPage.xaml.cs -------------------------------------------------------------------------------- /Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-developer-blog-samples/HEAD/Samples/VideoCaptureWithEditing/VideoCaptureWithEditing/project.json --------------------------------------------------------------------------------