├── .gitattributes ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── InputDialog.xaml ├── InputDialog.xaml.cs ├── LICENSE ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Prompt.xaml ├── Prompt.xaml.cs ├── Properties └── PublishProfiles │ └── FolderProfile.pubxml ├── README.md ├── WinContextTweaker.csproj ├── app.manifest └── assets ├── WinContextTweaker.ico ├── WinContextTweaker.png ├── screenshot1.png ├── screenshot2.png └── screenshot3.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /InputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/InputDialog.xaml -------------------------------------------------------------------------------- /InputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/InputDialog.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Prompt.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/Prompt.xaml -------------------------------------------------------------------------------- /Prompt.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/Prompt.xaml.cs -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/README.md -------------------------------------------------------------------------------- /WinContextTweaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/WinContextTweaker.csproj -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/app.manifest -------------------------------------------------------------------------------- /assets/WinContextTweaker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/assets/WinContextTweaker.ico -------------------------------------------------------------------------------- /assets/WinContextTweaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/assets/WinContextTweaker.png -------------------------------------------------------------------------------- /assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/assets/screenshot1.png -------------------------------------------------------------------------------- /assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/assets/screenshot2.png -------------------------------------------------------------------------------- /assets/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zWolfrost/WinContextTweaker/HEAD/assets/screenshot3.png --------------------------------------------------------------------------------