├── .gitattributes ├── .gitignore ├── LICENSE ├── app_binder.sln ├── app_binder ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NotifyIconWrapper.Designer.cs ├── NotifyIconWrapper.cs ├── NotifyIconWrapper.resx ├── ProcessUtils.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── app_binder.csproj ├── appbinder.png ├── appbinder_logo.png ├── config_window.xaml ├── config_window.xaml.cs ├── packages.config └── startup.cs └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/LICENSE -------------------------------------------------------------------------------- /app_binder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder.sln -------------------------------------------------------------------------------- /app_binder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/App.config -------------------------------------------------------------------------------- /app_binder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/App.xaml -------------------------------------------------------------------------------- /app_binder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/App.xaml.cs -------------------------------------------------------------------------------- /app_binder/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/MainWindow.xaml -------------------------------------------------------------------------------- /app_binder/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/MainWindow.xaml.cs -------------------------------------------------------------------------------- /app_binder/NotifyIconWrapper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/NotifyIconWrapper.Designer.cs -------------------------------------------------------------------------------- /app_binder/NotifyIconWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/NotifyIconWrapper.cs -------------------------------------------------------------------------------- /app_binder/NotifyIconWrapper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/NotifyIconWrapper.resx -------------------------------------------------------------------------------- /app_binder/ProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/ProcessUtils.cs -------------------------------------------------------------------------------- /app_binder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /app_binder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /app_binder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/Resources.resx -------------------------------------------------------------------------------- /app_binder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /app_binder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/Settings.settings -------------------------------------------------------------------------------- /app_binder/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/Properties/app.manifest -------------------------------------------------------------------------------- /app_binder/app_binder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/app_binder.csproj -------------------------------------------------------------------------------- /app_binder/appbinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/appbinder.png -------------------------------------------------------------------------------- /app_binder/appbinder_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/appbinder_logo.png -------------------------------------------------------------------------------- /app_binder/config_window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/config_window.xaml -------------------------------------------------------------------------------- /app_binder/config_window.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/config_window.xaml.cs -------------------------------------------------------------------------------- /app_binder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/packages.config -------------------------------------------------------------------------------- /app_binder/startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/app_binder/startup.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TenteEEEE/app_binder/HEAD/readme.md --------------------------------------------------------------------------------