├── .gitignore ├── LICENSE ├── README.md ├── UZIP2.sln ├── UZIP2 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Background.png ├── Config.cs ├── DebugWindow.xaml ├── DebugWindow.xaml.cs ├── KeyBoard.xaml ├── KeyBoard.xaml.cs ├── Language.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MyPasswords.cs ├── Mypassword.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ResultWindow.xaml ├── ResultWindow.xaml.cs ├── ScrollViewDictionary.xaml ├── SelectOut.xaml ├── SelectOut.xaml.cs ├── SelectOut2.xaml ├── SelectOut2.xaml.cs ├── Setting.cs ├── SimulateInput.cs ├── Tools.cs ├── UBAuto.png ├── UBCompress.png ├── UBExtract.png ├── UBPassword.png ├── UBSetting.png ├── UHotKey.cs ├── UMCancel.png ├── UMDelete.png ├── UMMini.png ├── UMMini_o.png ├── UMMove.png ├── UMReturn.png ├── UZIP.ico ├── UZIP2.csproj ├── YesNo.xaml ├── YesNo.xaml.cs ├── back2.png └── back3.png └── 功能演示动图.gif /.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | bin/ 3 | .vs/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/README.md -------------------------------------------------------------------------------- /UZIP2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2.sln -------------------------------------------------------------------------------- /UZIP2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/App.config -------------------------------------------------------------------------------- /UZIP2/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/App.xaml -------------------------------------------------------------------------------- /UZIP2/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/App.xaml.cs -------------------------------------------------------------------------------- /UZIP2/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Background.png -------------------------------------------------------------------------------- /UZIP2/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Config.cs -------------------------------------------------------------------------------- /UZIP2/DebugWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/DebugWindow.xaml -------------------------------------------------------------------------------- /UZIP2/DebugWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/DebugWindow.xaml.cs -------------------------------------------------------------------------------- /UZIP2/KeyBoard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/KeyBoard.xaml -------------------------------------------------------------------------------- /UZIP2/KeyBoard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/KeyBoard.xaml.cs -------------------------------------------------------------------------------- /UZIP2/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Language.cs -------------------------------------------------------------------------------- /UZIP2/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/MainWindow.xaml -------------------------------------------------------------------------------- /UZIP2/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UZIP2/MyPasswords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/MyPasswords.cs -------------------------------------------------------------------------------- /UZIP2/Mypassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Mypassword.cs -------------------------------------------------------------------------------- /UZIP2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UZIP2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UZIP2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Properties/Resources.resx -------------------------------------------------------------------------------- /UZIP2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UZIP2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Properties/Settings.settings -------------------------------------------------------------------------------- /UZIP2/ResultWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/ResultWindow.xaml -------------------------------------------------------------------------------- /UZIP2/ResultWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/ResultWindow.xaml.cs -------------------------------------------------------------------------------- /UZIP2/ScrollViewDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/ScrollViewDictionary.xaml -------------------------------------------------------------------------------- /UZIP2/SelectOut.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/SelectOut.xaml -------------------------------------------------------------------------------- /UZIP2/SelectOut.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/SelectOut.xaml.cs -------------------------------------------------------------------------------- /UZIP2/SelectOut2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/SelectOut2.xaml -------------------------------------------------------------------------------- /UZIP2/SelectOut2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/SelectOut2.xaml.cs -------------------------------------------------------------------------------- /UZIP2/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Setting.cs -------------------------------------------------------------------------------- /UZIP2/SimulateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/SimulateInput.cs -------------------------------------------------------------------------------- /UZIP2/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/Tools.cs -------------------------------------------------------------------------------- /UZIP2/UBAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UBAuto.png -------------------------------------------------------------------------------- /UZIP2/UBCompress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UBCompress.png -------------------------------------------------------------------------------- /UZIP2/UBExtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UBExtract.png -------------------------------------------------------------------------------- /UZIP2/UBPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UBPassword.png -------------------------------------------------------------------------------- /UZIP2/UBSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UBSetting.png -------------------------------------------------------------------------------- /UZIP2/UHotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UHotKey.cs -------------------------------------------------------------------------------- /UZIP2/UMCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMCancel.png -------------------------------------------------------------------------------- /UZIP2/UMDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMDelete.png -------------------------------------------------------------------------------- /UZIP2/UMMini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMMini.png -------------------------------------------------------------------------------- /UZIP2/UMMini_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMMini_o.png -------------------------------------------------------------------------------- /UZIP2/UMMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMMove.png -------------------------------------------------------------------------------- /UZIP2/UMReturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UMReturn.png -------------------------------------------------------------------------------- /UZIP2/UZIP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UZIP.ico -------------------------------------------------------------------------------- /UZIP2/UZIP2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/UZIP2.csproj -------------------------------------------------------------------------------- /UZIP2/YesNo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/YesNo.xaml -------------------------------------------------------------------------------- /UZIP2/YesNo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/YesNo.xaml.cs -------------------------------------------------------------------------------- /UZIP2/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/back2.png -------------------------------------------------------------------------------- /UZIP2/back3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/UZIP2/back3.png -------------------------------------------------------------------------------- /功能演示动图.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gawain-Chen/UZIP2/HEAD/功能演示动图.gif --------------------------------------------------------------------------------