├── .gitignore ├── README.md ├── TaskbarTool.sln ├── TaskbarTool ├── App.config ├── App.xaml ├── App.xaml.cs ├── Helpers │ ├── Constants.cs │ ├── Enums.cs │ ├── Externals.cs │ ├── Globals.cs │ ├── Options.cs │ ├── Structs.cs │ └── WindowsAccentColor.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Mushroom1UP.ico │ ├── tt-logo.ico │ └── tt-logo.png ├── Taskbar │ └── Taskbar.cs ├── TaskbarTool.csproj ├── app.manifest └── packages.config └── license.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/README.md -------------------------------------------------------------------------------- /TaskbarTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool.sln -------------------------------------------------------------------------------- /TaskbarTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/App.config -------------------------------------------------------------------------------- /TaskbarTool/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/App.xaml -------------------------------------------------------------------------------- /TaskbarTool/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/App.xaml.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Constants.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Enums.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Externals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Externals.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Globals.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Options.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/Structs.cs -------------------------------------------------------------------------------- /TaskbarTool/Helpers/WindowsAccentColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Helpers/WindowsAccentColor.cs -------------------------------------------------------------------------------- /TaskbarTool/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/MainWindow.xaml -------------------------------------------------------------------------------- /TaskbarTool/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TaskbarTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TaskbarTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TaskbarTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Properties/Resources.resx -------------------------------------------------------------------------------- /TaskbarTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TaskbarTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Properties/Settings.settings -------------------------------------------------------------------------------- /TaskbarTool/Resources/Mushroom1UP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Resources/Mushroom1UP.ico -------------------------------------------------------------------------------- /TaskbarTool/Resources/tt-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Resources/tt-logo.ico -------------------------------------------------------------------------------- /TaskbarTool/Resources/tt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Resources/tt-logo.png -------------------------------------------------------------------------------- /TaskbarTool/Taskbar/Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/Taskbar/Taskbar.cs -------------------------------------------------------------------------------- /TaskbarTool/TaskbarTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/TaskbarTool.csproj -------------------------------------------------------------------------------- /TaskbarTool/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/app.manifest -------------------------------------------------------------------------------- /TaskbarTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/TaskbarTool/packages.config -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Elestriel/TaskbarTools/HEAD/license.md --------------------------------------------------------------------------------