├── .gitattributes ├── .gitignore ├── CommonLibrary ├── CommonLibrary.csproj ├── Controls │ ├── GifRenderer │ │ ├── GifFileHandler.cs │ │ ├── GifPropertiesHelper.cs │ │ ├── GifRenderer.cs │ │ ├── InactiveGifManager.cs │ │ ├── ScaleSettings.cs │ │ ├── Structs │ │ │ ├── FrameProperties.cs │ │ │ └── ImageProperties.cs │ │ └── Themes │ │ │ └── GifRendererTheme.xaml │ └── ImageControl │ │ ├── ImageCrop │ │ ├── AspectRatio.cs │ │ ├── BitmapHelper.cs │ │ ├── Converter.cs │ │ ├── Crop │ │ │ ├── CropImageControl.cs │ │ │ └── CropImageSourceChangedEventHandler.cs │ │ ├── CropSelection.cs │ │ ├── CropSelectionSize.cs │ │ ├── FrameworkElementExtensions.cs │ │ ├── ImageTool.cs │ │ └── PlatformIndependent.cs │ │ └── Themes │ │ ├── CropImageControl.xaml │ │ └── ImageTool.xaml ├── DeviceInfoHelper.cs ├── DownloadHelper.cs ├── FileHelper.cs ├── ImageHelper.cs ├── ImageProcessing.cs ├── LocalCacheManager.cs ├── Properties │ ├── AssemblyInfo.cs │ └── CommonLibrary.rd.xml ├── SecurityHelper.cs ├── StorageHelper.cs ├── StorageManager.cs ├── StorageManagerEx.cs ├── Themes │ └── Generic.xaml ├── project.json └── project.lock.json ├── README.md ├── UWPToolkit.sln ├── UWPToolkit ├── App.xaml ├── App.xaml.cs ├── ApplicationInsights.config ├── 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 ├── Controls │ ├── BasePage.cs │ ├── PictureCropControl.xaml │ ├── PictureCropControl.xaml.cs │ ├── PictureEditor.xaml │ ├── PictureEditor.xaml.cs │ ├── PreviewPictureControl.xaml │ └── PreviewPictureControl.xaml.cs ├── MasterPage.xaml ├── MasterPage.xaml.cs ├── Package.appxmanifest ├── Pages │ ├── PictureEditorPage.xaml │ ├── PictureEditorPage.xaml.cs │ ├── PreviewPicturePage.xaml │ └── PreviewPicturePage.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Styles │ └── Dictionary.xaml ├── UWPToolkit.csproj ├── UWPToolkit_TemporaryKey.pfx ├── project.json └── project.lock.json └── lib └── InkToolbarControl ├── ARM ├── debug │ ├── Microsoft.Labs.InkToolbarControl.dll │ ├── Microsoft.Labs.InkToolbarControl.pri │ └── Microsoft.Labs.InkToolbarControl.winmd └── release │ ├── Microsoft.Labs.InkToolbarControl.dll │ ├── Microsoft.Labs.InkToolbarControl.pri │ └── Microsoft.Labs.InkToolbarControl.winmd └── x86 ├── debug ├── Microsoft.Labs.InkToolbarControl.dll ├── Microsoft.Labs.InkToolbarControl.pri └── Microsoft.Labs.InkToolbarControl.winmd └── release ├── Microsoft.Labs.InkToolbarControl.dll ├── Microsoft.Labs.InkToolbarControl.pri └── Microsoft.Labs.InkToolbarControl.winmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /CommonLibrary/CommonLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/CommonLibrary.csproj -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/GifFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/GifFileHandler.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/GifPropertiesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/GifPropertiesHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/GifRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/GifRenderer.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/InactiveGifManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/InactiveGifManager.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/ScaleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/ScaleSettings.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/Structs/FrameProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/Structs/FrameProperties.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/Structs/ImageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/Structs/ImageProperties.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/GifRenderer/Themes/GifRendererTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/GifRenderer/Themes/GifRendererTheme.xaml -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/AspectRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/AspectRatio.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/BitmapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/BitmapHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/Converter.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/Crop/CropImageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/Crop/CropImageControl.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/Crop/CropImageSourceChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/Crop/CropImageSourceChangedEventHandler.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/CropSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/CropSelection.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/CropSelectionSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/CropSelectionSize.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/FrameworkElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/FrameworkElementExtensions.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/ImageTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/ImageTool.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/ImageCrop/PlatformIndependent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/ImageCrop/PlatformIndependent.cs -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/Themes/CropImageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/Themes/CropImageControl.xaml -------------------------------------------------------------------------------- /CommonLibrary/Controls/ImageControl/Themes/ImageTool.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Controls/ImageControl/Themes/ImageTool.xaml -------------------------------------------------------------------------------- /CommonLibrary/DeviceInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/DeviceInfoHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/DownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/DownloadHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/FileHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/ImageHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/ImageProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/ImageProcessing.cs -------------------------------------------------------------------------------- /CommonLibrary/LocalCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/LocalCacheManager.cs -------------------------------------------------------------------------------- /CommonLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CommonLibrary/Properties/CommonLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Properties/CommonLibrary.rd.xml -------------------------------------------------------------------------------- /CommonLibrary/SecurityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/SecurityHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/StorageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/StorageHelper.cs -------------------------------------------------------------------------------- /CommonLibrary/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/StorageManager.cs -------------------------------------------------------------------------------- /CommonLibrary/StorageManagerEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/StorageManagerEx.cs -------------------------------------------------------------------------------- /CommonLibrary/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/Themes/Generic.xaml -------------------------------------------------------------------------------- /CommonLibrary/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/project.json -------------------------------------------------------------------------------- /CommonLibrary/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/CommonLibrary/project.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UWP_Toolkit -------------------------------------------------------------------------------- /UWPToolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit.sln -------------------------------------------------------------------------------- /UWPToolkit/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/App.xaml -------------------------------------------------------------------------------- /UWPToolkit/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/App.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/ApplicationInsights.config -------------------------------------------------------------------------------- /UWPToolkit/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/StoreLogo.png -------------------------------------------------------------------------------- /UWPToolkit/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UWPToolkit/Controls/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/BasePage.cs -------------------------------------------------------------------------------- /UWPToolkit/Controls/PictureCropControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PictureCropControl.xaml -------------------------------------------------------------------------------- /UWPToolkit/Controls/PictureCropControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PictureCropControl.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/Controls/PictureEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PictureEditor.xaml -------------------------------------------------------------------------------- /UWPToolkit/Controls/PictureEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PictureEditor.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/Controls/PreviewPictureControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PreviewPictureControl.xaml -------------------------------------------------------------------------------- /UWPToolkit/Controls/PreviewPictureControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Controls/PreviewPictureControl.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/MasterPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/MasterPage.xaml -------------------------------------------------------------------------------- /UWPToolkit/MasterPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/MasterPage.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Package.appxmanifest -------------------------------------------------------------------------------- /UWPToolkit/Pages/PictureEditorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Pages/PictureEditorPage.xaml -------------------------------------------------------------------------------- /UWPToolkit/Pages/PictureEditorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Pages/PictureEditorPage.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/Pages/PreviewPicturePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Pages/PreviewPicturePage.xaml -------------------------------------------------------------------------------- /UWPToolkit/Pages/PreviewPicturePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Pages/PreviewPicturePage.xaml.cs -------------------------------------------------------------------------------- /UWPToolkit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UWPToolkit/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Properties/Default.rd.xml -------------------------------------------------------------------------------- /UWPToolkit/Styles/Dictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/Styles/Dictionary.xaml -------------------------------------------------------------------------------- /UWPToolkit/UWPToolkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/UWPToolkit.csproj -------------------------------------------------------------------------------- /UWPToolkit/UWPToolkit_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/UWPToolkit_TemporaryKey.pfx -------------------------------------------------------------------------------- /UWPToolkit/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/project.json -------------------------------------------------------------------------------- /UWPToolkit/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/UWPToolkit/project.lock.json -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.dll -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.pri -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/debug/Microsoft.Labs.InkToolbarControl.winmd -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.dll -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.pri -------------------------------------------------------------------------------- /lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/ARM/release/Microsoft.Labs.InkToolbarControl.winmd -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.dll -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.pri -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/debug/Microsoft.Labs.InkToolbarControl.winmd -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.dll -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.pri -------------------------------------------------------------------------------- /lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeeCN/UWP_ToolKit_CommonLibrary/HEAD/lib/InkToolbarControl/x86/release/Microsoft.Labs.InkToolbarControl.winmd --------------------------------------------------------------------------------