├── .gitattributes ├── .gitignore ├── Images ├── CameraFrames.png ├── HandTest.png ├── ModelViewer.png ├── RainDayForWASDK.png ├── WinUI.UseLiteDB.png ├── pose-mediapipe.gif └── pose-mediapipe.png ├── LICENSE ├── README.md ├── WinUITutorialCode.sln ├── docs.md ├── src ├── .editorconfig ├── .vsconfig ├── CameraFrames │ ├── CameraFrames.sln │ ├── CameraFrames │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ ├── badge-logo.png │ │ │ ├── microsoft-logo.glb │ │ │ ├── microsoft-sdk.png │ │ │ ├── placeholder-sdk.png │ │ │ ├── placeholder.png │ │ │ ├── smalltile-sdk.png │ │ │ ├── splash-sdk.png │ │ │ ├── squaretile-sdk.png │ │ │ ├── storelogo-sdk.png │ │ │ ├── tile-sdk.png │ │ │ └── windows-sdk.png │ │ ├── CameraFrames.csproj │ │ ├── FrameRenderer.cs │ │ ├── FrameSourceViewModels.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Scenario1_DisplayDepthColorIR.xaml │ │ ├── Scenario1_DisplayDepthColorIR.xaml.cs │ │ ├── Scenario2_FindAvailableSourceGroups.xaml │ │ ├── Scenario2_FindAvailableSourceGroups.xaml.cs │ │ ├── SimpleLogger.cs │ │ └── app.manifest │ └── README.md ├── CodeBehindBinding │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Avatar.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 │ ├── CodeBehindBinding.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Styles │ │ └── BasicStyle.xaml │ └── app.manifest ├── CompactOverlayWindow.Core │ ├── CompactOverlayWindow.Core.csproj │ ├── Contracts │ │ └── Services │ │ │ └── IFileService.cs │ ├── README.md │ └── Services │ │ └── FileService.cs ├── CompactOverlayWindow │ ├── Activation │ │ ├── ActivationHandler.cs │ │ ├── DefaultActivationHandler.cs │ │ └── IActivationHandler.cs │ ├── 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 │ │ └── WindowIcon.ico │ ├── CompactOverlayWindow.csproj │ ├── Contracts │ │ ├── Services │ │ │ ├── IActivationService.cs │ │ │ ├── INavigationService.cs │ │ │ └── IPageService.cs │ │ └── ViewModels │ │ │ └── INavigationAware.cs │ ├── Controls │ │ ├── CompactOverlayControl.xaml │ │ └── CompactOverlayControl.xaml.cs │ ├── Helpers │ │ ├── FrameExtensions.cs │ │ ├── ResourceExtensions.cs │ │ ├── RuntimeHelper.cs │ │ └── TitleBarHelper.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appinstaller │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchsettings.json │ ├── README.md │ ├── Services │ │ ├── ActivationService.cs │ │ ├── NavigationService.cs │ │ └── PageService.cs │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ ├── Styles │ │ ├── FontSizes.xaml │ │ ├── TextBlock.xaml │ │ └── Thickness.xaml │ ├── TemplateStudio.xml │ ├── Usings.cs │ ├── ViewModels │ │ ├── BlankViewModel.cs │ │ └── MainViewModel.cs │ ├── Views │ │ ├── BlankPage.xaml │ │ ├── BlankPage.xaml.cs │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs │ └── app.manifest ├── FFmpegImageSharp │ ├── FFmpegImageSharp.csproj │ ├── Models │ │ ├── FrameData.cs │ │ └── FrameMetaData.cs │ ├── Program.cs │ ├── README.md │ ├── Services │ │ ├── FrameExtractor.cs │ │ ├── ImageProcessor.cs │ │ └── StreamFrameExtractor.cs │ ├── anger.mp4 │ └── normal.mp4 ├── GamepadController │ ├── 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 │ │ └── xbox-one-controller.png │ ├── GamepadController.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ └── app.manifest ├── GestureClassification │ ├── GestureClassification.csproj │ ├── MLModel1.consumption.cs │ ├── MLModel1.mbconfig │ ├── MLModel1.training.cs │ └── MLModel1.zip ├── LayoutExercise │ ├── 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 │ ├── LayoutExercise.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ └── app.manifest ├── MVVMBinding │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Avatar.jpg │ │ ├── Avatar1.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 │ ├── Helpers │ │ ├── Observable.cs │ │ └── RelayCommand.cs │ ├── MVVMBinding.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── Styles │ │ └── BasicStyle.xaml │ ├── ViewModels │ │ └── MainViewModel.cs │ └── app.manifest ├── MediaPipe.GestureClassification │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── HandsData │ │ │ ├── README.md │ │ │ ├── alldata.txt │ │ │ ├── back.txt │ │ │ ├── down.txt │ │ │ ├── forward.txt │ │ │ ├── land.txt │ │ │ ├── left.txt │ │ │ ├── right.txt │ │ │ ├── sample-code.text │ │ │ ├── stop.txt │ │ │ └── up.txt │ │ ├── LockScreenLogo.scale-200.png │ │ ├── MLModel1.zip │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── hand.png │ ├── Constants.cs │ ├── HandDataFormatHelper.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MediaPipe.GestureClassification.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── VFS │ │ └── SystemX64 │ │ │ ├── mediapipe │ │ │ └── modules │ │ │ │ ├── README.md │ │ │ │ ├── hand_landmark │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── calculators │ │ │ │ │ ├── BUILD │ │ │ │ │ └── hand_landmarks_to_rect_calculator.cc │ │ │ │ ├── hand_landmark_cpu.pbtxt │ │ │ │ ├── hand_landmark_full.tflite │ │ │ │ ├── hand_landmark_gpu.pbtxt │ │ │ │ ├── hand_landmark_landmarks_to_roi.pbtxt │ │ │ │ ├── hand_landmark_model_loader.pbtxt │ │ │ │ ├── hand_landmark_tracking_cpu.pbtxt │ │ │ │ ├── hand_landmark_tracking_cpu_image.pbtxt │ │ │ │ ├── hand_landmark_tracking_gpu.pbtxt │ │ │ │ ├── hand_landmark_tracking_gpu_image.pbtxt │ │ │ │ ├── handedness.txt │ │ │ │ └── palm_detection_detection_to_roi.pbtxt │ │ │ │ └── palm_detection │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── palm_detection_cpu.pbtxt │ │ │ │ ├── palm_detection_full.tflite │ │ │ │ ├── palm_detection_gpu.pbtxt │ │ │ │ └── palm_detection_model_loader.pbtxt │ │ │ └── mediapipe_c.dll │ └── app.manifest ├── MediaPipe.PoseDetection │ ├── 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 │ │ ├── jige.png │ │ ├── pose.jpg │ │ └── pose1.png │ ├── Extensions │ │ ├── PoseLine.cs │ │ ├── PoseLine3D.cs │ │ └── PoseOutputExtensions.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MediaPipe.PoseDetection.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── VFS │ │ └── SystemX64 │ │ │ ├── mediapipe │ │ │ └── modules │ │ │ │ ├── README.md │ │ │ │ ├── pose_detection │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── pose_detection_cpu.pbtxt │ │ │ │ └── pose_detection_gpu.pbtxt │ │ │ │ └── pose_landmark │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── pose_detection_to_roi.pbtxt │ │ │ │ ├── pose_landmark_by_roi_cpu.pbtxt │ │ │ │ ├── pose_landmark_by_roi_gpu.pbtxt │ │ │ │ ├── pose_landmark_cpu.pbtxt │ │ │ │ ├── pose_landmark_filtering.pbtxt │ │ │ │ ├── pose_landmark_gpu.pbtxt │ │ │ │ ├── pose_landmark_model_loader.pbtxt │ │ │ │ ├── pose_landmark_topology.svg │ │ │ │ ├── pose_landmarks_and_segmentation_inverse_projection.pbtxt │ │ │ │ ├── pose_landmarks_to_roi.pbtxt │ │ │ │ ├── pose_segmentation_filtering.pbtxt │ │ │ │ └── tensors_to_pose_landmarks_and_segmentation.pbtxt │ │ │ └── mediapipe_c.dll │ ├── ViewModels │ │ └── ModelViewModel.cs │ ├── app.manifest │ └── 紧闭眼.png ├── Mediapipe.Net.Interop │ └── Mediapipe.Net.Interop.csproj ├── Mediapipe.Net │ ├── Core │ │ ├── Disposable.cs │ │ ├── IMpResourceHandle.cs │ │ ├── InternalException.cs │ │ ├── MediapipeException.cs │ │ ├── MediapipeNetException.cs │ │ ├── MpResourceHandle.cs │ │ ├── SharedPtrHandle.cs │ │ └── UniquePtrHandle.cs │ ├── External │ │ ├── Glog.cs │ │ ├── Protobuf.cs │ │ ├── SerializedProto.cs │ │ ├── SerializedProtoVector.cs │ │ └── StdString.cs │ ├── Framework │ │ ├── CalculatorGraph.cs │ │ ├── CalculatorGraphConfigExtension.cs │ │ ├── Format │ │ │ └── ImageFrame.cs │ │ ├── OutputStreamPoller.cs │ │ ├── Packets │ │ │ ├── Packet.cs │ │ │ ├── PacketFactory.cs │ │ │ ├── PacketGetters.cs │ │ │ ├── PacketType.cs │ │ │ └── SidePackets.cs │ │ ├── Port │ │ │ ├── Status.cs │ │ │ ├── StatusOr.cs │ │ │ ├── StatusOrGpuBuffer.cs │ │ │ ├── StatusOrGpuResources.cs │ │ │ ├── StatusOrImageFrame.cs │ │ │ ├── StatusOrPoller.cs │ │ │ └── StatusOrString.cs │ │ ├── Timestamp.cs │ │ ├── Tool │ │ │ ├── NameUtil.cs │ │ │ └── ValidateName.cs │ │ └── ValidatedGraphConfig │ │ │ ├── EdgeInfo.cs │ │ │ ├── EdgeInfoVector.cs │ │ │ ├── NodeRef.cs │ │ │ ├── NodeType.cs │ │ │ └── ValidatedGraphConfig.cs │ ├── Gpu │ │ ├── Egl.cs │ │ ├── Gl.cs │ │ ├── GlCalculatorHelper.cs │ │ ├── GlContext.cs │ │ ├── GlSyncPoint.cs │ │ ├── GlTexture.cs │ │ ├── GlTextureBuffer.cs │ │ ├── GlTextureInfo.cs │ │ ├── GlVersion.cs │ │ ├── GpuBuffer.cs │ │ ├── GpuBufferFormat.cs │ │ ├── GpuBufferFormatExtension.cs │ │ └── GpuResources.cs │ ├── Graphs │ │ └── InstantMotionTracking │ │ │ ├── Anchor3d.cs │ │ │ └── Anchor3dVector.cs │ ├── LICENSE │ ├── Mediapipe.Net.csproj │ ├── Native │ │ ├── MpReturnCode.cs │ │ ├── MpReturnCodeExtension.cs │ │ ├── NativeMethods.cs │ │ ├── SafeNativeMethods │ │ │ ├── External │ │ │ │ ├── Absl.cs │ │ │ │ └── Stdlib.cs │ │ │ ├── Framework │ │ │ │ ├── CalculatorGraph.cs │ │ │ │ ├── Format │ │ │ │ │ └── ImageFormat.cs │ │ │ │ ├── OutputStreamPoller.cs │ │ │ │ ├── Packet.cs │ │ │ │ ├── Timestamp.cs │ │ │ │ └── ValidatedGraphConfig.cs │ │ │ ├── Gpu │ │ │ │ ├── Gl.cs │ │ │ │ ├── GlCalculatorHelper.cs │ │ │ │ ├── GlContext.cs │ │ │ │ ├── GlTexture.cs │ │ │ │ ├── GlTextureBuffer.cs │ │ │ │ ├── GpuBuffer.cs │ │ │ │ ├── GpuBufferFormat.cs │ │ │ │ └── GpuResources.cs │ │ │ └── Utils │ │ │ │ └── ResourceUtil.cs │ │ └── UnsafeNativeMethods │ │ │ ├── External │ │ │ ├── Absl.cs │ │ │ ├── Glog.cs │ │ │ ├── Protobuf.cs │ │ │ └── Stdlib.cs │ │ │ ├── Framework │ │ │ ├── Calculator.cs │ │ │ ├── CalculatorGraph.cs │ │ │ ├── Format │ │ │ │ └── ImageFormat.cs │ │ │ ├── OutputStreamPoller.cs │ │ │ ├── Packet.cs │ │ │ ├── Timestamp.cs │ │ │ └── ValidatedGraphConfig.cs │ │ │ ├── FreeHGlobal.cs │ │ │ ├── Gpu │ │ │ ├── Gl.cs │ │ │ ├── GlCalculatorHelper.cs │ │ │ ├── GlContext.cs │ │ │ ├── GlTexture.cs │ │ │ ├── GlTextureBuffer.cs │ │ │ ├── GpuBuffer.cs │ │ │ ├── GpuBufferFormat.cs │ │ │ └── GpuResources.cs │ │ │ └── Graphs │ │ │ └── InstantMotionTracking.cs │ ├── Solutions │ │ ├── CpuSolution.cs │ │ ├── FaceMeshCpuSolution.cs │ │ ├── FaceMeshGpuSolution.cs │ │ ├── GpuSolution.cs │ │ ├── HandsCpuSolution.cs │ │ ├── HandsGpuSolution.cs │ │ ├── HandsOutput.cs │ │ ├── IComputingSolution.cs │ │ ├── PoseCpuSolution.cs │ │ ├── PoseGpuSolution.cs │ │ ├── PoseOutput.cs │ │ └── Solution.cs │ └── Util │ │ ├── ResourceManager.cs │ │ └── UnsafeUtil.cs ├── ModelViewer.Core │ ├── Contracts │ │ └── Services │ │ │ └── IFileService.cs │ ├── Helpers │ │ └── Json.cs │ ├── ModelViewer.Core.csproj │ ├── README.md │ └── Services │ │ └── FileService.cs ├── ModelViewer │ ├── Activation │ │ ├── ActivationHandler.cs │ │ ├── DefaultActivationHandler.cs │ │ └── IActivationHandler.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── ElectronBotModel │ │ │ ├── Base.obj │ │ │ ├── Body1.obj │ │ │ ├── Body2.obj │ │ │ ├── Face.obj │ │ │ ├── Head1.obj │ │ │ ├── Head2.obj │ │ │ ├── Head3.obj │ │ │ ├── LeftArm1.obj │ │ │ ├── LeftArm2.obj │ │ │ ├── LeftShoulder.obj │ │ │ ├── RightArm1.obj │ │ │ ├── RightArm2.obj │ │ │ └── RightShoulder.obj │ │ ├── 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 │ │ └── WindowIcon.ico │ ├── Behaviors │ │ ├── NavigationViewHeaderBehavior.cs │ │ └── NavigationViewHeaderMode.cs │ ├── Contracts │ │ ├── Services │ │ │ ├── IActivationService.cs │ │ │ ├── ILocalSettingsService.cs │ │ │ ├── INavigationService.cs │ │ │ ├── INavigationViewService.cs │ │ │ ├── IPageService.cs │ │ │ └── IThemeSelectorService.cs │ │ └── ViewModels │ │ │ └── INavigationAware.cs │ ├── Helpers │ │ ├── EnumToBooleanConverter.cs │ │ ├── FrameExtensions.cs │ │ ├── NavigationHelper.cs │ │ ├── ResourceExtensions.cs │ │ ├── RuntimeHelper.cs │ │ ├── SettingsStorageExtensions.cs │ │ └── TitleBarHelper.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ModelViewer.csproj │ ├── Models │ │ └── LocalSettingsOptions.cs │ ├── Package.appinstaller │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchsettings.json │ ├── README.md │ ├── Services │ │ ├── ActivationService.cs │ │ ├── FilePickerService.cs │ │ ├── LocalSettingsService.cs │ │ ├── NavigationService.cs │ │ ├── NavigationViewService.cs │ │ ├── PageService.cs │ │ └── ThemeSelectorService.cs │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ ├── Styles │ │ ├── FontSizes.xaml │ │ ├── TextBlock.xaml │ │ └── Thickness.xaml │ ├── TemplateStudio.xml │ ├── Usings.cs │ ├── ViewModels │ │ ├── AttachedNodeViewModel.cs │ │ ├── BlankViewModel.cs │ │ ├── ModelViewModel.cs │ │ ├── SettingsViewModel.cs │ │ └── ShellViewModel.cs │ ├── Views │ │ ├── BlankPage.xaml │ │ ├── BlankPage.xaml.cs │ │ ├── ModelPage.xaml │ │ ├── ModelPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── ShellPage.xaml │ │ └── ShellPage.xaml.cs │ ├── app.manifest │ ├── appsettings.json │ └── 紧闭眼.png ├── ProjectComparison │ ├── README.md │ ├── UwpApp │ │ ├── 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 │ │ └── UwpApp.csproj │ ├── WinUI-Desktop │ │ ├── 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 │ │ ├── HomePage.xaml │ │ ├── HomePage.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ShellRootPage.xaml │ │ ├── ShellRootPage.xaml.cs │ │ ├── WinUI-Desktop.csproj │ │ └── app.manifest │ └── WpfApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── WpfApp.csproj ├── RainDayForWASDK │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Images │ │ │ ├── demo1.jpg │ │ │ ├── demo2.jpg │ │ │ ├── demo3.jpg │ │ │ └── demo4.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 │ ├── Controls │ │ ├── CollisionMatrix.cs │ │ ├── Drop.cs │ │ ├── DropItem.cs │ │ ├── RainyDay.cs │ │ ├── RainyDayCanvas.xaml │ │ └── RainyDayCanvas.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── RainDayForWASDK.csproj │ └── app.manifest ├── SpeechAndTTS │ ├── 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 │ ├── AudioCapturePermissions.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── SpeechAndTTS.csproj │ └── app.manifest ├── SpeechAndTTSByNav.Core │ ├── Contracts │ │ └── Services │ │ │ └── IFileService.cs │ ├── Helpers │ │ └── Json.cs │ ├── README.md │ ├── Services │ │ └── FileService.cs │ └── SpeechAndTTSByNav.Core.csproj ├── SpeechAndTTSByNav │ ├── Activation │ │ ├── ActivationHandler.cs │ │ ├── DefaultActivationHandler.cs │ │ └── IActivationHandler.cs │ ├── 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 │ │ └── WindowIcon.ico │ ├── AudioCapturePermissions.cs │ ├── Behaviors │ │ ├── NavigationViewHeaderBehavior.cs │ │ └── NavigationViewHeaderMode.cs │ ├── Contracts │ │ ├── Services │ │ │ ├── IActivationService.cs │ │ │ ├── ILocalSettingsService.cs │ │ │ ├── INavigationService.cs │ │ │ ├── INavigationViewService.cs │ │ │ └── IPageService.cs │ │ └── ViewModels │ │ │ └── INavigationAware.cs │ ├── Helpers │ │ ├── FrameExtensions.cs │ │ ├── NavigationHelper.cs │ │ ├── ResourceExtensions.cs │ │ ├── RuntimeHelper.cs │ │ ├── SettingsStorageExtensions.cs │ │ └── TitleBarHelper.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ └── LocalSettingsOptions.cs │ ├── Package.appinstaller │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchsettings.json │ ├── README.md │ ├── Services │ │ ├── ActivationService.cs │ │ ├── LocalSettingsService.cs │ │ ├── NavigationService.cs │ │ ├── NavigationViewService.cs │ │ └── PageService.cs │ ├── SpeechAndTTSByNav.csproj │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ ├── Styles │ │ ├── FontSizes.xaml │ │ ├── TextBlock.xaml │ │ └── Thickness.xaml │ ├── TemplateStudio.xml │ ├── Usings.cs │ ├── ViewModels │ │ ├── Blank1ViewModel.cs │ │ ├── BlankViewModel.cs │ │ ├── MainViewModel.cs │ │ └── ShellViewModel.cs │ ├── Views │ │ ├── Blank1Page.xaml │ │ ├── Blank1Page.xaml.cs │ │ ├── BlankPage.xaml │ │ ├── BlankPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── ShellPage.xaml │ │ └── ShellPage.xaml.cs │ ├── app.manifest │ └── appsettings.json ├── Verdure.VoiceAssistant │ ├── 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 │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── launchSettings.json │ ├── Verdure.VoiceAssistant.csproj │ ├── VoiceAssistantHelper.cs │ └── app.manifest └── WinUI.UseLiteDB │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── Logo │ │ ├── 20210131085930545.jpg │ │ ├── 20210131085942815.jpg │ │ ├── 20210131085952105.jpg │ │ ├── 20210131090009877.jpg │ │ ├── 20210131090019789.jpg │ │ ├── 20210131090029568.jpg │ │ ├── 20210131090038794.jpg │ │ ├── 20210131090049251.jpg │ │ ├── 20210131090110119.jpg │ │ ├── 20210131090126399.jpg │ │ ├── 20210131090139784.jpg │ │ ├── 20210131090153739.jpg │ │ ├── 20210131090205927.jpg │ │ ├── 20210131090222482.jpg │ │ ├── 20210131090235500.jpg │ │ ├── 20210131090247772.jpg │ │ ├── 20210131090306937.jpg │ │ ├── 20210131090318710.jpg │ │ ├── 20210131090331106.jpg │ │ ├── 20210131090342173.jpg │ │ ├── 20210131090354230.jpg │ │ ├── 20210131090406109.jpg │ │ ├── 20210131090418298.jpg │ │ ├── 20210131090428756.jpg │ │ ├── 20210131090439937.jpg │ │ └── 20210131090449814.jpg │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ ├── data-litedb.db │ └── db-data.json │ ├── Helpers │ ├── Observable.cs │ └── RelayCommand.cs │ ├── Interfaces │ └── IPersonalInfoRepository.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ ├── PersonalInfo.cs │ └── PersonalInfoDto.cs │ ├── Package.appxmanifest │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── Repository │ └── PersonalInfoRepository.cs │ ├── Services │ └── PersonalInfoSource.cs │ ├── ViewModels │ └── MainViewModel.cs │ ├── WinUI.UseLiteDB.csproj │ └── app.manifest └── 大纲outline.pptx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/CameraFrames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/CameraFrames.png -------------------------------------------------------------------------------- /Images/HandTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/HandTest.png -------------------------------------------------------------------------------- /Images/ModelViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/ModelViewer.png -------------------------------------------------------------------------------- /Images/RainDayForWASDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/RainDayForWASDK.png -------------------------------------------------------------------------------- /Images/WinUI.UseLiteDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/WinUI.UseLiteDB.png -------------------------------------------------------------------------------- /Images/pose-mediapipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/pose-mediapipe.gif -------------------------------------------------------------------------------- /Images/pose-mediapipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/Images/pose-mediapipe.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/README.md -------------------------------------------------------------------------------- /WinUITutorialCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/WinUITutorialCode.sln -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/docs.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/.vsconfig -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames.sln -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/App.xaml -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/App.xaml.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/Square310x310Logo.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/badge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/badge-logo.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/microsoft-logo.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/microsoft-logo.glb -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/microsoft-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/microsoft-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/placeholder-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/placeholder-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/placeholder.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/smalltile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/smalltile-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/splash-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/splash-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/squaretile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/squaretile-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/storelogo-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/storelogo-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/tile-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/tile-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Assets/windows-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Assets/windows-sdk.png -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/CameraFrames.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/CameraFrames.csproj -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/FrameRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/FrameRenderer.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/FrameSourceViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/FrameSourceViewModels.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/MainWindow.xaml -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Package.appxmanifest -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Scenario1_DisplayDepthColorIR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Scenario1_DisplayDepthColorIR.xaml -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Scenario1_DisplayDepthColorIR.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Scenario1_DisplayDepthColorIR.xaml.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Scenario2_FindAvailableSourceGroups.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Scenario2_FindAvailableSourceGroups.xaml -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/Scenario2_FindAvailableSourceGroups.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/Scenario2_FindAvailableSourceGroups.xaml.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/SimpleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/SimpleLogger.cs -------------------------------------------------------------------------------- /src/CameraFrames/CameraFrames/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/CameraFrames/app.manifest -------------------------------------------------------------------------------- /src/CameraFrames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CameraFrames/README.md -------------------------------------------------------------------------------- /src/CodeBehindBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/App.xaml -------------------------------------------------------------------------------- /src/CodeBehindBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/App.xaml.cs -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/Avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/Avatar.jpg -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CodeBehindBinding/CodeBehindBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/CodeBehindBinding.csproj -------------------------------------------------------------------------------- /src/CodeBehindBinding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/MainWindow.xaml -------------------------------------------------------------------------------- /src/CodeBehindBinding/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/CodeBehindBinding/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Package.appxmanifest -------------------------------------------------------------------------------- /src/CodeBehindBinding/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CodeBehindBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/README.md -------------------------------------------------------------------------------- /src/CodeBehindBinding/Styles/BasicStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/Styles/BasicStyle.xaml -------------------------------------------------------------------------------- /src/CodeBehindBinding/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CodeBehindBinding/app.manifest -------------------------------------------------------------------------------- /src/CompactOverlayWindow.Core/CompactOverlayWindow.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow.Core/CompactOverlayWindow.Core.csproj -------------------------------------------------------------------------------- /src/CompactOverlayWindow.Core/Contracts/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow.Core/Contracts/Services/IFileService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow.Core/README.md -------------------------------------------------------------------------------- /src/CompactOverlayWindow.Core/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow.Core/Services/FileService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Activation/ActivationHandler.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Activation/DefaultActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Activation/DefaultActivationHandler.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Activation/IActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Activation/IActivationHandler.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/App.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/App.xaml.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Assets/WindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Assets/WindowIcon.ico -------------------------------------------------------------------------------- /src/CompactOverlayWindow/CompactOverlayWindow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/CompactOverlayWindow.csproj -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Contracts/Services/IActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Contracts/Services/IActivationService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Contracts/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Contracts/Services/INavigationService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Contracts/Services/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Contracts/Services/IPageService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Contracts/ViewModels/INavigationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Contracts/ViewModels/INavigationAware.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Controls/CompactOverlayControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Controls/CompactOverlayControl.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Controls/CompactOverlayControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Controls/CompactOverlayControl.xaml.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Helpers/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Helpers/FrameExtensions.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Helpers/ResourceExtensions.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Helpers/TitleBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Helpers/TitleBarHelper.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/MainWindow.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Package.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Package.appinstaller -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Package.appxmanifest -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Properties/launchsettings.json -------------------------------------------------------------------------------- /src/CompactOverlayWindow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/README.md -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Services/ActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Services/ActivationService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Services/PageService.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Styles/Thickness.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Styles/Thickness.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/TemplateStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/TemplateStudio.xml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Usings.cs: -------------------------------------------------------------------------------- 1 | global using WinUIEx; 2 | -------------------------------------------------------------------------------- /src/CompactOverlayWindow/ViewModels/BlankViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/ViewModels/BlankViewModel.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Views/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Views/BlankPage.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Views/BlankPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Views/BlankPage.xaml.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Views/MainPage.xaml -------------------------------------------------------------------------------- /src/CompactOverlayWindow/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/CompactOverlayWindow/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/CompactOverlayWindow/app.manifest -------------------------------------------------------------------------------- /src/FFmpegImageSharp/FFmpegImageSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/FFmpegImageSharp.csproj -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Models/FrameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Models/FrameData.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Models/FrameMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Models/FrameMetaData.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Program.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/README.md -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Services/FrameExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Services/FrameExtractor.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Services/ImageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Services/ImageProcessor.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/Services/StreamFrameExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/Services/StreamFrameExtractor.cs -------------------------------------------------------------------------------- /src/FFmpegImageSharp/anger.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/anger.mp4 -------------------------------------------------------------------------------- /src/FFmpegImageSharp/normal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/FFmpegImageSharp/normal.mp4 -------------------------------------------------------------------------------- /src/GamepadController/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/App.xaml -------------------------------------------------------------------------------- /src/GamepadController/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/App.xaml.cs -------------------------------------------------------------------------------- /src/GamepadController/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/GamepadController/Assets/xbox-one-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Assets/xbox-one-controller.png -------------------------------------------------------------------------------- /src/GamepadController/GamepadController.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/GamepadController.csproj -------------------------------------------------------------------------------- /src/GamepadController/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/MainWindow.xaml -------------------------------------------------------------------------------- /src/GamepadController/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/GamepadController/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Package.appxmanifest -------------------------------------------------------------------------------- /src/GamepadController/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/GamepadController/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GamepadController/app.manifest -------------------------------------------------------------------------------- /src/GestureClassification/GestureClassification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GestureClassification/GestureClassification.csproj -------------------------------------------------------------------------------- /src/GestureClassification/MLModel1.consumption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GestureClassification/MLModel1.consumption.cs -------------------------------------------------------------------------------- /src/GestureClassification/MLModel1.mbconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GestureClassification/MLModel1.mbconfig -------------------------------------------------------------------------------- /src/GestureClassification/MLModel1.training.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GestureClassification/MLModel1.training.cs -------------------------------------------------------------------------------- /src/GestureClassification/MLModel1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/GestureClassification/MLModel1.zip -------------------------------------------------------------------------------- /src/LayoutExercise/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/App.xaml -------------------------------------------------------------------------------- /src/LayoutExercise/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/App.xaml.cs -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/LayoutExercise/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/LayoutExercise/LayoutExercise.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/LayoutExercise.csproj -------------------------------------------------------------------------------- /src/LayoutExercise/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/MainWindow.xaml -------------------------------------------------------------------------------- /src/LayoutExercise/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/LayoutExercise/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Package.appxmanifest -------------------------------------------------------------------------------- /src/LayoutExercise/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/LayoutExercise/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/LayoutExercise/app.manifest -------------------------------------------------------------------------------- /src/MVVMBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/App.xaml -------------------------------------------------------------------------------- /src/MVVMBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/App.xaml.cs -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Avatar.jpg -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Avatar1.jpg -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/MVVMBinding/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MVVMBinding/Helpers/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Helpers/Observable.cs -------------------------------------------------------------------------------- /src/MVVMBinding/Helpers/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Helpers/RelayCommand.cs -------------------------------------------------------------------------------- /src/MVVMBinding/MVVMBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/MVVMBinding.csproj -------------------------------------------------------------------------------- /src/MVVMBinding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/MainWindow.xaml -------------------------------------------------------------------------------- /src/MVVMBinding/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MVVMBinding/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Package.appxmanifest -------------------------------------------------------------------------------- /src/MVVMBinding/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MVVMBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/README.md -------------------------------------------------------------------------------- /src/MVVMBinding/Styles/BasicStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/Styles/BasicStyle.xaml -------------------------------------------------------------------------------- /src/MVVMBinding/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/MVVMBinding/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MVVMBinding/app.manifest -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/App.xaml -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/App.xaml.cs -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/README.md: -------------------------------------------------------------------------------- 1 | ## 此目录数据为用测试代码生成的动作坐标处理数据 -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/alldata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/alldata.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/back.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/back.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/down.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/down.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/forward.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/forward.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/land.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/left.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/right.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/right.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/sample-code.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/sample-code.text -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/stop.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/HandsData/up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/HandsData/up.txt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/MLModel1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/MLModel1.zip -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Assets/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Assets/hand.png -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Constants.cs -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/HandDataFormatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/HandDataFormatHelper.cs -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/MainWindow.xaml -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/MediaPipe.GestureClassification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/MediaPipe.GestureClassification.csproj -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Package.appxmanifest -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/README.md -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/README.md -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/BUILD -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/README.md -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/calculators/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/calculators/BUILD -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/calculators/hand_landmarks_to_rect_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/calculators/hand_landmarks_to_rect_calculator.cc -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_full.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_full.tflite -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_landmarks_to_roi.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_landmarks_to_roi.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_model_loader.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_model_loader.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_cpu_image.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_cpu_image.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_gpu_image.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/hand_landmark_tracking_gpu_image.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/handedness.txt: -------------------------------------------------------------------------------- 1 | Left 2 | Right 3 | -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/palm_detection_detection_to_roi.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/hand_landmark/palm_detection_detection_to_roi.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/BUILD -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/README.md -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_full.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_full.tflite -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_model_loader.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe/modules/palm_detection/palm_detection_model_loader.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/VFS/SystemX64/mediapipe_c.dll -------------------------------------------------------------------------------- /src/MediaPipe.GestureClassification/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.GestureClassification/app.manifest -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/App.xaml -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/App.xaml.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/jige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/jige.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/pose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/pose.jpg -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Assets/pose1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Assets/pose1.png -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Extensions/PoseLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Extensions/PoseLine.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Extensions/PoseLine3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Extensions/PoseLine3D.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Extensions/PoseOutputExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Extensions/PoseOutputExtensions.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/MainWindow.xaml -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/MediaPipe.PoseDetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/MediaPipe.PoseDetection.csproj -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Package.appxmanifest -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/README.md -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/README.md -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/BUILD -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/README.md -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/pose_detection_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/pose_detection_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/pose_detection_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_detection/pose_detection_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/BUILD -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/README.md -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_detection_to_roi.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_detection_to_roi.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_by_roi_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_by_roi_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_by_roi_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_by_roi_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_cpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_cpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_filtering.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_filtering.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_gpu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_gpu.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_model_loader.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_model_loader.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_topology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmark_topology.svg -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmarks_and_segmentation_inverse_projection.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmarks_and_segmentation_inverse_projection.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmarks_to_roi.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_landmarks_to_roi.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_segmentation_filtering.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/pose_segmentation_filtering.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/tensors_to_pose_landmarks_and_segmentation.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe/modules/pose_landmark/tensors_to_pose_landmarks_and_segmentation.pbtxt -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/VFS/SystemX64/mediapipe_c.dll -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/ViewModels/ModelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/ViewModels/ModelViewModel.cs -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/app.manifest -------------------------------------------------------------------------------- /src/MediaPipe.PoseDetection/紧闭眼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/MediaPipe.PoseDetection/紧闭眼.png -------------------------------------------------------------------------------- /src/Mediapipe.Net.Interop/Mediapipe.Net.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net.Interop/Mediapipe.Net.Interop.csproj -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/Disposable.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/IMpResourceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/IMpResourceHandle.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/InternalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/InternalException.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/MediapipeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/MediapipeException.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/MediapipeNetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/MediapipeNetException.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/MpResourceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/MpResourceHandle.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/SharedPtrHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/SharedPtrHandle.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Core/UniquePtrHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Core/UniquePtrHandle.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/External/Glog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/External/Glog.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/External/Protobuf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/External/Protobuf.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/External/SerializedProto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/External/SerializedProto.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/External/SerializedProtoVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/External/SerializedProtoVector.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/External/StdString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/External/StdString.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/CalculatorGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/CalculatorGraph.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/CalculatorGraphConfigExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/CalculatorGraphConfigExtension.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Format/ImageFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Format/ImageFrame.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/OutputStreamPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/OutputStreamPoller.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Packets/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Packets/Packet.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Packets/PacketFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Packets/PacketFactory.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Packets/PacketGetters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Packets/PacketGetters.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Packets/PacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Packets/PacketType.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Packets/SidePackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Packets/SidePackets.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/Status.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOr.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOrGpuBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOrGpuBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOrGpuResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOrGpuResources.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOrImageFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOrImageFrame.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOrPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOrPoller.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Port/StatusOrString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Port/StatusOrString.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Timestamp.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Tool/NameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Tool/NameUtil.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/Tool/ValidateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/Tool/ValidateName.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/ValidatedGraphConfig/EdgeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/ValidatedGraphConfig/EdgeInfo.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/ValidatedGraphConfig/EdgeInfoVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/ValidatedGraphConfig/EdgeInfoVector.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/ValidatedGraphConfig/NodeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/ValidatedGraphConfig/NodeRef.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/ValidatedGraphConfig/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/ValidatedGraphConfig/NodeType.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Framework/ValidatedGraphConfig/ValidatedGraphConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Framework/ValidatedGraphConfig/ValidatedGraphConfig.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/Egl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/Egl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/Gl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/Gl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlCalculatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlCalculatorHelper.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlContext.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlSyncPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlSyncPoint.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlTexture.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlTextureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlTextureBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlTextureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlTextureInfo.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GlVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GlVersion.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GpuBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GpuBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GpuBufferFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GpuBufferFormat.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GpuBufferFormatExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GpuBufferFormatExtension.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Gpu/GpuResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Gpu/GpuResources.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Graphs/InstantMotionTracking/Anchor3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Graphs/InstantMotionTracking/Anchor3d.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Graphs/InstantMotionTracking/Anchor3dVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Graphs/InstantMotionTracking/Anchor3dVector.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/LICENSE -------------------------------------------------------------------------------- /src/Mediapipe.Net/Mediapipe.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Mediapipe.Net.csproj -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/MpReturnCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/MpReturnCode.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/MpReturnCodeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/MpReturnCodeExtension.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/NativeMethods.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/External/Absl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/External/Absl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/External/Stdlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/External/Stdlib.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/CalculatorGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/CalculatorGraph.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Format/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Format/ImageFormat.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/OutputStreamPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/OutputStreamPoller.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Packet.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/Timestamp.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Framework/ValidatedGraphConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Framework/ValidatedGraphConfig.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/Gl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/Gl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlCalculatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlCalculatorHelper.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlContext.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlTexture.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlTextureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GlTextureBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuBufferFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuBufferFormat.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Gpu/GpuResources.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/SafeNativeMethods/Utils/ResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/SafeNativeMethods/Utils/ResourceUtil.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Absl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Absl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Glog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Glog.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Protobuf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Protobuf.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Stdlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/External/Stdlib.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Calculator.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/CalculatorGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/CalculatorGraph.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Format/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Format/ImageFormat.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/OutputStreamPoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/OutputStreamPoller.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Packet.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/Timestamp.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/ValidatedGraphConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Framework/ValidatedGraphConfig.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/FreeHGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/FreeHGlobal.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/Gl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/Gl.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlCalculatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlCalculatorHelper.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlContext.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlTexture.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlTextureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GlTextureBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuBuffer.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuBufferFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuBufferFormat.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Gpu/GpuResources.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Native/UnsafeNativeMethods/Graphs/InstantMotionTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Native/UnsafeNativeMethods/Graphs/InstantMotionTracking.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/CpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/CpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/FaceMeshCpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/FaceMeshCpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/FaceMeshGpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/FaceMeshGpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/GpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/GpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/HandsCpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/HandsCpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/HandsGpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/HandsGpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/HandsOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/HandsOutput.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/IComputingSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/IComputingSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/PoseCpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/PoseCpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/PoseGpuSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/PoseGpuSolution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/PoseOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/PoseOutput.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Solutions/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Solutions/Solution.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Util/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Util/ResourceManager.cs -------------------------------------------------------------------------------- /src/Mediapipe.Net/Util/UnsafeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Mediapipe.Net/Util/UnsafeUtil.cs -------------------------------------------------------------------------------- /src/ModelViewer.Core/Contracts/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer.Core/Contracts/Services/IFileService.cs -------------------------------------------------------------------------------- /src/ModelViewer.Core/Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer.Core/Helpers/Json.cs -------------------------------------------------------------------------------- /src/ModelViewer.Core/ModelViewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer.Core/ModelViewer.Core.csproj -------------------------------------------------------------------------------- /src/ModelViewer.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer.Core/README.md -------------------------------------------------------------------------------- /src/ModelViewer.Core/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer.Core/Services/FileService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Activation/ActivationHandler.cs -------------------------------------------------------------------------------- /src/ModelViewer/Activation/DefaultActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Activation/DefaultActivationHandler.cs -------------------------------------------------------------------------------- /src/ModelViewer/Activation/IActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Activation/IActivationHandler.cs -------------------------------------------------------------------------------- /src/ModelViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/App.xaml -------------------------------------------------------------------------------- /src/ModelViewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/App.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Base.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Base.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Body1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Body1.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Body2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Body2.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Face.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Face.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Head1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Head1.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Head2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Head2.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/Head3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/Head3.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/LeftArm1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/LeftArm1.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/LeftArm2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/LeftArm2.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/LeftShoulder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/LeftShoulder.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/RightArm1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/RightArm1.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/RightArm2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/RightArm2.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/ElectronBotModel/RightShoulder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/ElectronBotModel/RightShoulder.obj -------------------------------------------------------------------------------- /src/ModelViewer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ModelViewer/Assets/WindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Assets/WindowIcon.ico -------------------------------------------------------------------------------- /src/ModelViewer/Behaviors/NavigationViewHeaderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Behaviors/NavigationViewHeaderBehavior.cs -------------------------------------------------------------------------------- /src/ModelViewer/Behaviors/NavigationViewHeaderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Behaviors/NavigationViewHeaderMode.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/IActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/IActivationService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/ILocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/ILocalSettingsService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/INavigationService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/INavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/INavigationViewService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/IPageService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/Services/IThemeSelectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/Services/IThemeSelectorService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Contracts/ViewModels/INavigationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Contracts/ViewModels/INavigationAware.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/FrameExtensions.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/NavigationHelper.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/ResourceExtensions.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/SettingsStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/SettingsStorageExtensions.cs -------------------------------------------------------------------------------- /src/ModelViewer/Helpers/TitleBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Helpers/TitleBarHelper.cs -------------------------------------------------------------------------------- /src/ModelViewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/MainWindow.xaml -------------------------------------------------------------------------------- /src/ModelViewer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/ModelViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ModelViewer.csproj -------------------------------------------------------------------------------- /src/ModelViewer/Models/LocalSettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Models/LocalSettingsOptions.cs -------------------------------------------------------------------------------- /src/ModelViewer/Package.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Package.appinstaller -------------------------------------------------------------------------------- /src/ModelViewer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Package.appxmanifest -------------------------------------------------------------------------------- /src/ModelViewer/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Properties/launchsettings.json -------------------------------------------------------------------------------- /src/ModelViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/README.md -------------------------------------------------------------------------------- /src/ModelViewer/Services/ActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/ActivationService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/FilePickerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/FilePickerService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/LocalSettingsService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/NavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/NavigationViewService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/PageService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Services/ThemeSelectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Services/ThemeSelectorService.cs -------------------------------------------------------------------------------- /src/ModelViewer/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /src/ModelViewer/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Styles/Thickness.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Styles/Thickness.xaml -------------------------------------------------------------------------------- /src/ModelViewer/TemplateStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/TemplateStudio.xml -------------------------------------------------------------------------------- /src/ModelViewer/Usings.cs: -------------------------------------------------------------------------------- 1 | global using WinUIEx; 2 | -------------------------------------------------------------------------------- /src/ModelViewer/ViewModels/AttachedNodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ViewModels/AttachedNodeViewModel.cs -------------------------------------------------------------------------------- /src/ModelViewer/ViewModels/BlankViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ViewModels/BlankViewModel.cs -------------------------------------------------------------------------------- /src/ModelViewer/ViewModels/ModelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ViewModels/ModelViewModel.cs -------------------------------------------------------------------------------- /src/ModelViewer/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/ModelViewer/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/ModelViewer/Views/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/BlankPage.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Views/BlankPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/BlankPage.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/Views/ModelPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/ModelPage.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Views/ModelPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/ModelPage.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/Views/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/ShellPage.xaml -------------------------------------------------------------------------------- /src/ModelViewer/Views/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/Views/ShellPage.xaml.cs -------------------------------------------------------------------------------- /src/ModelViewer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/app.manifest -------------------------------------------------------------------------------- /src/ModelViewer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/appsettings.json -------------------------------------------------------------------------------- /src/ModelViewer/紧闭眼.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ModelViewer/紧闭眼.png -------------------------------------------------------------------------------- /src/ProjectComparison/README.md: -------------------------------------------------------------------------------- 1 | ## 关于WinUI桌面版和wpf的项目结构的区别 2 | 3 | ### 并进行了 类似uwp的页面导航测试 -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/App.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/MainPage.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Package.appxmanifest -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/ProjectComparison/UwpApp/UwpApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/UwpApp/UwpApp.csproj -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/App.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/HomePage.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/HomePage.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/MainWindow.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Package.appxmanifest -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/ShellRootPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/ShellRootPage.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/ShellRootPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/ShellRootPage.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/WinUI-Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/WinUI-Desktop.csproj -------------------------------------------------------------------------------- /src/ProjectComparison/WinUI-Desktop/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WinUI-Desktop/app.manifest -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/App.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/App.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/MainWindow.xaml -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/ProjectComparison/WpfApp/WpfApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/ProjectComparison/WpfApp/WpfApp.csproj -------------------------------------------------------------------------------- /src/RainDayForWASDK/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/App.xaml -------------------------------------------------------------------------------- /src/RainDayForWASDK/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/App.xaml.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Images/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Images/demo1.jpg -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Images/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Images/demo2.jpg -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Images/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Images/demo3.jpg -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Images/demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Images/demo4.jpg -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/CollisionMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/CollisionMatrix.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/Drop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/Drop.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/DropItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/DropItem.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/RainyDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/RainyDay.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/RainyDayCanvas.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/RainyDayCanvas.xaml -------------------------------------------------------------------------------- /src/RainDayForWASDK/Controls/RainyDayCanvas.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Controls/RainyDayCanvas.xaml.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/MainWindow.xaml -------------------------------------------------------------------------------- /src/RainDayForWASDK/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/RainDayForWASDK/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Package.appxmanifest -------------------------------------------------------------------------------- /src/RainDayForWASDK/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/RainDayForWASDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/README.md -------------------------------------------------------------------------------- /src/RainDayForWASDK/RainDayForWASDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/RainDayForWASDK.csproj -------------------------------------------------------------------------------- /src/RainDayForWASDK/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/RainDayForWASDK/app.manifest -------------------------------------------------------------------------------- /src/SpeechAndTTS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/App.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/App.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTS/AudioCapturePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/AudioCapturePermissions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTS/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/MainWindow.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTS/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Package.appxmanifest -------------------------------------------------------------------------------- /src/SpeechAndTTS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SpeechAndTTS/SpeechAndTTS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/SpeechAndTTS.csproj -------------------------------------------------------------------------------- /src/SpeechAndTTS/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTS/app.manifest -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav.Core/Contracts/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav.Core/Contracts/Services/IFileService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav.Core/Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav.Core/Helpers/Json.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav.Core/README.md -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav.Core/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav.Core/Services/FileService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav.Core/SpeechAndTTSByNav.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav.Core/SpeechAndTTSByNav.Core.csproj -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Activation/ActivationHandler.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Activation/DefaultActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Activation/DefaultActivationHandler.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Activation/IActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Activation/IActivationHandler.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/App.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/App.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Assets/WindowIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Assets/WindowIcon.ico -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/AudioCapturePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/AudioCapturePermissions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Behaviors/NavigationViewHeaderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Behaviors/NavigationViewHeaderBehavior.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Behaviors/NavigationViewHeaderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Behaviors/NavigationViewHeaderMode.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/Services/IActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/Services/IActivationService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/Services/ILocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/Services/ILocalSettingsService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/Services/INavigationService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/Services/INavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/Services/INavigationViewService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/Services/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/Services/IPageService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Contracts/ViewModels/INavigationAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Contracts/ViewModels/INavigationAware.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/FrameExtensions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/NavigationHelper.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/ResourceExtensions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/SettingsStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/SettingsStorageExtensions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Helpers/TitleBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Helpers/TitleBarHelper.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/MainWindow.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Models/LocalSettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Models/LocalSettingsOptions.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Package.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Package.appinstaller -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Package.appxmanifest -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Properties/launchsettings.json -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/README.md -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Services/ActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Services/ActivationService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Services/LocalSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Services/LocalSettingsService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Services/NavigationService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Services/NavigationViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Services/NavigationViewService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Services/PageService.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/SpeechAndTTSByNav.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/SpeechAndTTSByNav.csproj -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Styles/FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Styles/FontSizes.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Styles/Thickness.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Styles/Thickness.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/TemplateStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/TemplateStudio.xml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Usings.cs: -------------------------------------------------------------------------------- 1 | global using WinUIEx; 2 | -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/ViewModels/Blank1ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/ViewModels/Blank1ViewModel.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/ViewModels/BlankViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/ViewModels/BlankViewModel.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/Blank1Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/Blank1Page.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/Blank1Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/Blank1Page.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/BlankPage.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/BlankPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/BlankPage.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/MainPage.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/ShellPage.xaml -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/Views/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/Views/ShellPage.xaml.cs -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/app.manifest -------------------------------------------------------------------------------- /src/SpeechAndTTSByNav/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/SpeechAndTTSByNav/appsettings.json -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/App.xaml -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/App.xaml.cs -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/MainWindow.xaml -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Package.appxmanifest -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/Verdure.VoiceAssistant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/Verdure.VoiceAssistant.csproj -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/VoiceAssistantHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/VoiceAssistantHelper.cs -------------------------------------------------------------------------------- /src/Verdure.VoiceAssistant/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/Verdure.VoiceAssistant/app.manifest -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/App.xaml -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/App.xaml.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131085930545.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131085930545.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131085942815.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131085942815.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131085952105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131085952105.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090009877.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090009877.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090019789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090019789.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090029568.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090029568.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090038794.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090038794.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090049251.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090049251.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090110119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090110119.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090126399.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090126399.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090139784.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090139784.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090153739.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090153739.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090205927.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090205927.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090222482.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090222482.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090235500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090235500.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090247772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090247772.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090306937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090306937.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090318710.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090318710.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090331106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090331106.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090342173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090342173.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090354230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090354230.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090406109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090406109.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090418298.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090418298.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090428756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090428756.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090439937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090439937.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Logo/20210131090449814.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Logo/20210131090449814.jpg -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/data-litedb.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Assets/db-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Assets/db-data.json -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Helpers/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Helpers/Observable.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Helpers/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Helpers/RelayCommand.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Interfaces/IPersonalInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Interfaces/IPersonalInfoRepository.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/MainWindow.xaml -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Models/PersonalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Models/PersonalInfo.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Models/PersonalInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Models/PersonalInfoDto.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/README.md -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Repository/PersonalInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Repository/PersonalInfoRepository.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/Services/PersonalInfoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/Services/PersonalInfoSource.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/WinUI.UseLiteDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/WinUI.UseLiteDB.csproj -------------------------------------------------------------------------------- /src/WinUI.UseLiteDB/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/src/WinUI.UseLiteDB/app.manifest -------------------------------------------------------------------------------- /大纲outline.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenShadeZhang/WinUI-Tutorial-Code/HEAD/大纲outline.pptx --------------------------------------------------------------------------------