├── .gitattributes ├── .gitignore ├── Extras ├── ManualTaskDialog.cs └── TaskDialogIconExtractor.cs ├── Icon.ico ├── Imageres_Icons.Designer.cs ├── Imageres_Icons.cs ├── Imageres_Icons.resx ├── LICENSE.txt ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── README.md ├── WinEnums.cs ├── Windows-Task-Dialog-Generator.csproj ├── Windows-Task-Dialog-Generator.sln ├── global.json └── publish-all.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Extras/ManualTaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Extras/ManualTaskDialog.cs -------------------------------------------------------------------------------- /Extras/TaskDialogIconExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Extras/TaskDialogIconExtractor.cs -------------------------------------------------------------------------------- /Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Icon.ico -------------------------------------------------------------------------------- /Imageres_Icons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Imageres_Icons.Designer.cs -------------------------------------------------------------------------------- /Imageres_Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Imageres_Icons.cs -------------------------------------------------------------------------------- /Imageres_Icons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Imageres_Icons.resx -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/README.md -------------------------------------------------------------------------------- /WinEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/WinEnums.cs -------------------------------------------------------------------------------- /Windows-Task-Dialog-Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Windows-Task-Dialog-Generator.csproj -------------------------------------------------------------------------------- /Windows-Task-Dialog-Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/Windows-Task-Dialog-Generator.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/global.json -------------------------------------------------------------------------------- /publish-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThioJoe/Modern-Windows-Message-Box-Generator/HEAD/publish-all.ps1 --------------------------------------------------------------------------------