├── .vs └── TaskBarColorPicker │ ├── DesignTimeBuild │ └── .dtbcache │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── Capture.PNG ├── ExamplePickerColor1.png ├── ExamplePickerColor2.png ├── ExamplePickerColor3.png ├── ExamplePickerHover.png ├── LICENSE ├── README.md ├── Setup ├── Product.wxs ├── Setup.wixproj ├── bin │ └── Debug │ │ ├── Setup.msi │ │ └── Setup.wixpdb └── obj │ └── Debug │ ├── Product.wixobj │ ├── Setup.wixproj.BindBuiltOutputsFileListnull.txt │ ├── Setup.wixproj.BindContentsFileListnull.txt │ ├── Setup.wixproj.BindOutputsFileListnull.txt │ └── Setup.wixproj.FileList.txt ├── TaskBarColorPicker.sln └── TaskBarColorPicker ├── App.config ├── BlockInteraction.Designer.cs ├── BlockInteraction.cs ├── BlockInteraction.resx ├── Icons ├── cursorPicker.ico ├── main.ico └── picker.ico ├── MouseHook.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── TaskbarColorPicker.csproj ├── app.manifest ├── bin └── Debug │ ├── TaskBarColorPicker.exe │ ├── TaskBarColorPicker.exe.config │ └── TaskBarColorPicker.pdb └── obj └── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TaskBarColorPicker.BlockInteraction.resources ├── TaskBarColorPicker.Properties.Resources.resources ├── TaskBarColorPicker.Settings.resources ├── TaskBarColorPicker.csproj.CoreCompileInputs.cache ├── TaskBarColorPicker.csproj.FileListAbsolute.txt ├── TaskBarColorPicker.csproj.GenerateResource.cache ├── TaskBarColorPicker.csprojResolveAssemblyReference.cache ├── TaskBarColorPicker.exe ├── TaskBarColorPicker.pdb ├── TaskbarColorPicker.csprojAssemblyReference.cache ├── TempPE └── Properties.Resources.Designer.cs.dll ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs /.vs/TaskBarColorPicker/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/.vs/TaskBarColorPicker/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/TaskBarColorPicker/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/.vs/TaskBarColorPicker/v15/.suo -------------------------------------------------------------------------------- /.vs/TaskBarColorPicker/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/.vs/TaskBarColorPicker/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Capture.PNG -------------------------------------------------------------------------------- /ExamplePickerColor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/ExamplePickerColor1.png -------------------------------------------------------------------------------- /ExamplePickerColor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/ExamplePickerColor2.png -------------------------------------------------------------------------------- /ExamplePickerColor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/ExamplePickerColor3.png -------------------------------------------------------------------------------- /ExamplePickerHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/ExamplePickerHover.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/Product.wxs -------------------------------------------------------------------------------- /Setup/Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/Setup.wixproj -------------------------------------------------------------------------------- /Setup/bin/Debug/Setup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/bin/Debug/Setup.msi -------------------------------------------------------------------------------- /Setup/bin/Debug/Setup.wixpdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/bin/Debug/Setup.wixpdb -------------------------------------------------------------------------------- /Setup/obj/Debug/Product.wixobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/obj/Debug/Product.wixobj -------------------------------------------------------------------------------- /Setup/obj/Debug/Setup.wixproj.BindBuiltOutputsFileListnull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/obj/Debug/Setup.wixproj.BindBuiltOutputsFileListnull.txt -------------------------------------------------------------------------------- /Setup/obj/Debug/Setup.wixproj.BindContentsFileListnull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/obj/Debug/Setup.wixproj.BindContentsFileListnull.txt -------------------------------------------------------------------------------- /Setup/obj/Debug/Setup.wixproj.BindOutputsFileListnull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/obj/Debug/Setup.wixproj.BindOutputsFileListnull.txt -------------------------------------------------------------------------------- /Setup/obj/Debug/Setup.wixproj.FileList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/Setup/obj/Debug/Setup.wixproj.FileList.txt -------------------------------------------------------------------------------- /TaskBarColorPicker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker.sln -------------------------------------------------------------------------------- /TaskBarColorPicker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/App.config -------------------------------------------------------------------------------- /TaskBarColorPicker/BlockInteraction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/BlockInteraction.Designer.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/BlockInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/BlockInteraction.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/BlockInteraction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/BlockInteraction.resx -------------------------------------------------------------------------------- /TaskBarColorPicker/Icons/cursorPicker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Icons/cursorPicker.ico -------------------------------------------------------------------------------- /TaskBarColorPicker/Icons/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Icons/main.ico -------------------------------------------------------------------------------- /TaskBarColorPicker/Icons/picker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Icons/picker.ico -------------------------------------------------------------------------------- /TaskBarColorPicker/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/MouseHook.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Program.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Properties/Resources.resx -------------------------------------------------------------------------------- /TaskBarColorPicker/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Properties/Settings.settings -------------------------------------------------------------------------------- /TaskBarColorPicker/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Settings.Designer.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Settings.cs -------------------------------------------------------------------------------- /TaskBarColorPicker/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/Settings.resx -------------------------------------------------------------------------------- /TaskBarColorPicker/TaskbarColorPicker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/TaskbarColorPicker.csproj -------------------------------------------------------------------------------- /TaskBarColorPicker/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/app.manifest -------------------------------------------------------------------------------- /TaskBarColorPicker/bin/Debug/TaskBarColorPicker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/bin/Debug/TaskBarColorPicker.exe -------------------------------------------------------------------------------- /TaskBarColorPicker/bin/Debug/TaskBarColorPicker.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/bin/Debug/TaskBarColorPicker.exe.config -------------------------------------------------------------------------------- /TaskBarColorPicker/bin/Debug/TaskBarColorPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/bin/Debug/TaskBarColorPicker.pdb -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.BlockInteraction.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.BlockInteraction.resources -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.Properties.Resources.resources -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.Settings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.Settings.resources -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 76569f6566918fa9ee337c663e99483a13eb9ca6 2 | -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.exe -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskBarColorPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskBarColorPicker.pdb -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TaskbarColorPicker.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TaskbarColorPicker.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Erskine/Taskbar-Color-Picker/HEAD/TaskBarColorPicker/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TaskBarColorPicker/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------