├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issue.md ├── .gitignore ├── LICENSE ├── MSIXPkg2 ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── MSIXPkg2.wapproj └── Package.appxmanifest ├── README.md ├── RainbowTaskbar.sln ├── RainbowTaskbar ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Configuration │ ├── Config.cs │ ├── Instruction │ │ ├── DefaultPresets.cs │ │ ├── Instruction.cs │ │ ├── InstructionConfig.cs │ │ ├── InstructionGroup.cs │ │ ├── InstructionPreset.cs │ │ └── Instructions │ │ │ ├── BorderRadiusInstruction.cs │ │ │ ├── ClearLayerInstruction.cs │ │ │ ├── ColorInstruction.cs │ │ │ ├── DelayInstruction.cs │ │ │ ├── ImageInstruction.cs │ │ │ ├── ShapeInstruction.cs │ │ │ ├── TextInstruction.cs │ │ │ └── TransparencyInstruction.cs │ └── Web │ │ └── WebConfig.cs ├── Drawing │ ├── CanvasManager.cs │ └── LayerManager.cs ├── Editor │ ├── DebugWindow.xaml │ ├── DebugWindow.xaml.cs │ ├── EditorViewModel.cs │ ├── EditorWindow.xaml │ ├── EditorWindow.xaml.cs │ └── Pages │ │ ├── About.xaml │ │ ├── About.xaml.cs │ │ ├── Browse.xaml │ │ ├── Browse.xaml.cs │ │ ├── Configs.xaml │ │ ├── Configs.xaml.cs │ │ ├── Controls │ │ ├── ConfigListItemControl.xaml │ │ ├── ConfigListItemControl.xaml.cs │ │ ├── InstructionContextMenu.xaml │ │ ├── InstructionContextMenu.xaml.cs │ │ ├── InstructionControls │ │ │ ├── BorderRadiusInstructionControl.xaml │ │ │ ├── BorderRadiusInstructionControl.xaml.cs │ │ │ ├── ClearLayerInstructionControl.xaml │ │ │ ├── ClearLayerInstructionControl.xaml.cs │ │ │ ├── ColorInstructionControl.xaml │ │ │ ├── ColorInstructionControl.xaml.cs │ │ │ ├── Converters │ │ │ │ ├── ColorConverter.cs │ │ │ │ ├── DivideHalf.cs │ │ │ │ ├── FileExists.cs │ │ │ │ └── FloatToPercentage.cs │ │ │ ├── DelayInstructionControl.xaml │ │ │ ├── DelayInstructionControl.xaml.cs │ │ │ ├── ImageInstructionControl.xaml │ │ │ ├── ImageInstructionControl.xaml.cs │ │ │ ├── ShapeInstructionControl.xaml │ │ │ ├── ShapeInstructionControl.xaml.cs │ │ │ ├── TextInstructionControl.xaml │ │ │ ├── TextInstructionControl.xaml.cs │ │ │ ├── TransparencyInstructionControl.xaml │ │ │ └── TransparencyInstructionControl.xaml.cs │ │ ├── IssueControl.xaml │ │ ├── IssueControl.xaml.cs │ │ ├── LoginControl.xaml │ │ ├── LoginControl.xaml.cs │ │ ├── ResultListItemControl.xaml │ │ ├── ResultListItemControl.xaml.cs │ │ ├── UnsafeImage.cs │ │ └── WebControls │ │ │ ├── AddPropertyDialogControl.xaml │ │ │ └── AddPropertyDialogControl.xaml.cs │ │ ├── Edit │ │ ├── EditInfo.xaml │ │ ├── EditInfo.xaml.cs │ │ ├── EditPage.cs │ │ ├── InstructionEditPage.xaml │ │ ├── InstructionEditPage.xaml.cs │ │ ├── ViewComments.xaml │ │ ├── ViewComments.xaml.cs │ │ ├── ViewInfo.xaml │ │ ├── ViewInfo.xaml.cs │ │ ├── WebEditPage.xaml │ │ ├── WebEditPage.xaml.cs │ │ └── WebView2Fixed.cs │ │ ├── EmptyPageBadFix.xaml │ │ ├── EmptyPageBadFix.xaml.cs │ │ ├── EmptyPageBadFix2.xaml │ │ ├── EmptyPageBadFix2.xaml.cs │ │ ├── Home.xaml │ │ ├── Home.xaml.cs │ │ ├── Settings.xaml │ │ └── Settings.xaml.cs ├── ExplorerTAP │ └── ExplorerTAP.cs ├── FodyWeavers.xml ├── HTTPAPI │ └── WorkshopAPI.cs ├── Helpers │ ├── AutoUpdate.cs │ ├── Cache.cs │ ├── DPIUtil.cs │ ├── HiddenWebViewHost.xaml │ ├── HiddenWebViewHost.xaml.cs │ ├── JsonColorConverter.cs │ ├── Taskbar.cs │ └── Window.cs ├── Interpolation │ └── ColorInterpolation.cs ├── Languages │ ├── Localization.cs │ ├── Translators.cs │ ├── en_US.xaml │ ├── en_US.xaml.cs │ ├── fr_FR.xaml │ ├── fr_FR.xaml.cs │ ├── ro_RO.xaml │ ├── ro_RO.xaml.cs │ ├── zh_CN.cs │ └── zh_CN.xaml ├── Preferences │ └── Settings.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json ├── RainbowTaskbar.csproj ├── Resources │ ├── Paypal.png │ ├── icon.bmp │ ├── icon.ico │ ├── icon.png │ └── monaco.zip ├── Taskbar.xaml ├── Taskbar.xaml.cs ├── TaskbarViewModel.cs ├── TrayWindow.xaml ├── TrayWindow.xaml.cs ├── V2Legacy │ └── Configuration │ │ ├── Config.cs │ │ ├── Instruction.cs │ │ ├── InstructionPreset.cs │ │ └── Instructions │ │ ├── BorderRadiusInstruction.cs │ │ ├── ClearLayerInstruction.cs │ │ ├── ColorInstruction.cs │ │ ├── DelayInstruction.cs │ │ ├── ImageInstruction.cs │ │ ├── ShapeInstruction.cs │ │ ├── TextInstruction.cs │ │ └── TransparencyInstruction.cs └── msix.build.props ├── RainbowTaskbarDLL ├── AppearanceServiceAPI.cpp ├── AppearanceServiceAPI.h ├── ArmFix │ └── RpcProxy.h ├── ErrorDebug.h ├── Factory.h ├── IUnused.h ├── IUnused.idl ├── RainbowTaskbarDLL.def ├── RainbowTaskbarDLL.idl ├── RainbowTaskbarDLL.vcxproj ├── RainbowTaskbarDLL.vcxproj.filters ├── TAP.cpp ├── TAP.h ├── Taskbar.h ├── VisualTreeWatch.cpp ├── VisualTreeWatch.h ├── csharpinterop.cpp ├── dllmain.cpp ├── framework.h ├── packages.config └── winrt.h ├── SetupARM64.iss └── SetupX64.iss /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/LICENSE -------------------------------------------------------------------------------- /MSIXPkg2/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /MSIXPkg2/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /MSIXPkg2/MSIXPkg2.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/MSIXPkg2.wapproj -------------------------------------------------------------------------------- /MSIXPkg2/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/MSIXPkg2/Package.appxmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/README.md -------------------------------------------------------------------------------- /RainbowTaskbar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar.sln -------------------------------------------------------------------------------- /RainbowTaskbar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/App.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/App.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/AssemblyInfo.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Config.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/DefaultPresets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/DefaultPresets.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/InstructionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/InstructionConfig.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/InstructionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/InstructionGroup.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/InstructionPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/InstructionPreset.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/BorderRadiusInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/BorderRadiusInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/ClearLayerInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/ClearLayerInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/ColorInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/ColorInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/DelayInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/DelayInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/ImageInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/ImageInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/ShapeInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/ShapeInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/TextInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/TextInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Instruction/Instructions/TransparencyInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Instruction/Instructions/TransparencyInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Configuration/Web/WebConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Configuration/Web/WebConfig.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Drawing/CanvasManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Drawing/CanvasManager.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Drawing/LayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Drawing/LayerManager.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/DebugWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/DebugWindow.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/DebugWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/DebugWindow.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/EditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/EditorViewModel.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/EditorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/EditorWindow.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/EditorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/EditorWindow.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/About.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/About.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Browse.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Browse.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Browse.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Browse.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Configs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Configs.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Configs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Configs.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/ConfigListItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/ConfigListItemControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/ConfigListItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/ConfigListItemControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionContextMenu.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionContextMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionContextMenu.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/BorderRadiusInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/BorderRadiusInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/BorderRadiusInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/BorderRadiusInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ClearLayerInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ClearLayerInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ClearLayerInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ClearLayerInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ColorInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ColorInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ColorInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ColorInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/ColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/ColorConverter.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/DivideHalf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/DivideHalf.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/FileExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/FileExists.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/FloatToPercentage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/Converters/FloatToPercentage.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/DelayInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/DelayInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/DelayInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/DelayInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ImageInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ImageInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ImageInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ImageInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ShapeInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ShapeInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ShapeInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/ShapeInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TextInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TextInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TextInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TextInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TransparencyInstructionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TransparencyInstructionControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TransparencyInstructionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/InstructionControls/TransparencyInstructionControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/IssueControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/IssueControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/IssueControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/IssueControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/LoginControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/LoginControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/LoginControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/LoginControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/ResultListItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/ResultListItemControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/ResultListItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/ResultListItemControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/UnsafeImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/UnsafeImage.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/WebControls/AddPropertyDialogControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/WebControls/AddPropertyDialogControl.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Controls/WebControls/AddPropertyDialogControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Controls/WebControls/AddPropertyDialogControl.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/EditInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/EditInfo.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/EditInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/EditInfo.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/EditPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/EditPage.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/InstructionEditPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/InstructionEditPage.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/InstructionEditPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/InstructionEditPage.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/ViewComments.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/ViewComments.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/ViewComments.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/ViewComments.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/ViewInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/ViewInfo.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/ViewInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/ViewInfo.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/WebEditPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/WebEditPage.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/WebEditPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/WebEditPage.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Edit/WebView2Fixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Edit/WebView2Fixed.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/EmptyPageBadFix.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/EmptyPageBadFix.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/EmptyPageBadFix.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/EmptyPageBadFix.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/EmptyPageBadFix2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/EmptyPageBadFix2.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/EmptyPageBadFix2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/EmptyPageBadFix2.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Home.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Home.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Settings.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Editor/Pages/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Editor/Pages/Settings.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/ExplorerTAP/ExplorerTAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/ExplorerTAP/ExplorerTAP.cs -------------------------------------------------------------------------------- /RainbowTaskbar/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/FodyWeavers.xml -------------------------------------------------------------------------------- /RainbowTaskbar/HTTPAPI/WorkshopAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/HTTPAPI/WorkshopAPI.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/AutoUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/AutoUpdate.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/Cache.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/DPIUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/DPIUtil.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/HiddenWebViewHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/HiddenWebViewHost.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/HiddenWebViewHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/HiddenWebViewHost.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/JsonColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/JsonColorConverter.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/Taskbar.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Helpers/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Helpers/Window.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Interpolation/ColorInterpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Interpolation/ColorInterpolation.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/Localization.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/Translators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/Translators.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/en_US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/en_US.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/en_US.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/en_US.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/fr_FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/fr_FR.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/fr_FR.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/fr_FR.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/ro_RO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/ro_RO.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/ro_RO.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/ro_RO.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/zh_CN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/zh_CN.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Languages/zh_CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Languages/zh_CN.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Preferences/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Preferences/Settings.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Properties/Resources.resx -------------------------------------------------------------------------------- /RainbowTaskbar/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RainbowTaskbar/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Properties/Settings.settings -------------------------------------------------------------------------------- /RainbowTaskbar/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Properties/launchSettings.json -------------------------------------------------------------------------------- /RainbowTaskbar/RainbowTaskbar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/RainbowTaskbar.csproj -------------------------------------------------------------------------------- /RainbowTaskbar/Resources/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Resources/Paypal.png -------------------------------------------------------------------------------- /RainbowTaskbar/Resources/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Resources/icon.bmp -------------------------------------------------------------------------------- /RainbowTaskbar/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Resources/icon.ico -------------------------------------------------------------------------------- /RainbowTaskbar/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Resources/icon.png -------------------------------------------------------------------------------- /RainbowTaskbar/Resources/monaco.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Resources/monaco.zip -------------------------------------------------------------------------------- /RainbowTaskbar/Taskbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Taskbar.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/Taskbar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/Taskbar.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/TaskbarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/TaskbarViewModel.cs -------------------------------------------------------------------------------- /RainbowTaskbar/TrayWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/TrayWindow.xaml -------------------------------------------------------------------------------- /RainbowTaskbar/TrayWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/TrayWindow.xaml.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Config.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/InstructionPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/InstructionPreset.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/BorderRadiusInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/BorderRadiusInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/ClearLayerInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/ClearLayerInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/ColorInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/ColorInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/DelayInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/DelayInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/ImageInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/ImageInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/ShapeInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/ShapeInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/TextInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/TextInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/V2Legacy/Configuration/Instructions/TransparencyInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/V2Legacy/Configuration/Instructions/TransparencyInstruction.cs -------------------------------------------------------------------------------- /RainbowTaskbar/msix.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbar/msix.build.props -------------------------------------------------------------------------------- /RainbowTaskbarDLL/AppearanceServiceAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/AppearanceServiceAPI.cpp -------------------------------------------------------------------------------- /RainbowTaskbarDLL/AppearanceServiceAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/AppearanceServiceAPI.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/ArmFix/RpcProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/ArmFix/RpcProxy.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/ErrorDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/ErrorDebug.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/Factory.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/IUnused.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /RainbowTaskbarDLL/IUnused.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/IUnused.idl -------------------------------------------------------------------------------- /RainbowTaskbarDLL/RainbowTaskbarDLL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/RainbowTaskbarDLL.def -------------------------------------------------------------------------------- /RainbowTaskbarDLL/RainbowTaskbarDLL.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/RainbowTaskbarDLL.idl -------------------------------------------------------------------------------- /RainbowTaskbarDLL/RainbowTaskbarDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/RainbowTaskbarDLL.vcxproj -------------------------------------------------------------------------------- /RainbowTaskbarDLL/RainbowTaskbarDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/RainbowTaskbarDLL.vcxproj.filters -------------------------------------------------------------------------------- /RainbowTaskbarDLL/TAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/TAP.cpp -------------------------------------------------------------------------------- /RainbowTaskbarDLL/TAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/TAP.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/Taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/Taskbar.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/VisualTreeWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/VisualTreeWatch.cpp -------------------------------------------------------------------------------- /RainbowTaskbarDLL/VisualTreeWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/VisualTreeWatch.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/csharpinterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/csharpinterop.cpp -------------------------------------------------------------------------------- /RainbowTaskbarDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/dllmain.cpp -------------------------------------------------------------------------------- /RainbowTaskbarDLL/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/framework.h -------------------------------------------------------------------------------- /RainbowTaskbarDLL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/packages.config -------------------------------------------------------------------------------- /RainbowTaskbarDLL/winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/RainbowTaskbarDLL/winrt.h -------------------------------------------------------------------------------- /SetupARM64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/SetupARM64.iss -------------------------------------------------------------------------------- /SetupX64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad2017gd/RainbowTaskbar/HEAD/SetupX64.iss --------------------------------------------------------------------------------