├── .gitignore ├── GeometryX ├── App.config ├── App.xaml ├── App.xaml.cs ├── GeometryX.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── DataModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Brush.xaml │ ├── Geometry.xaml │ └── Style.xaml ├── View │ ├── IconButton.xaml │ └── IconButton.xaml.cs ├── ViewModel │ └── MainWindowVM.cs └── icon.ico ├── GifX ├── App.config ├── App.xaml ├── App.xaml.cs ├── GIFmaker │ ├── AnimatedGif.cs │ ├── AnimatedGifCreator.cs │ ├── Extensions.cs │ ├── GifClass.cs │ ├── GifQuality.cs │ ├── GrayscaleQuantizer.cs │ ├── Helper.cs │ ├── OctreeQuantizer.cs │ ├── PaletteQuantizer.cs │ ├── Quantizer.cs │ └── VideoEncoder.cs ├── GIFplayer │ └── GifImage.cs ├── Gif.xaml ├── Gif.xaml.cs ├── GifX.csproj ├── Helper │ └── DispatcherHelper.cs ├── Image │ └── Camera.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ViewModel │ ├── MainWindowViewModel.cs │ └── WaitingWindowViewModel.cs ├── WaitingWindow.xaml └── WaitingWindow.xaml.cs ├── HandyX.sln ├── IconfontX ├── App.config ├── App.xaml ├── App.xaml.cs ├── GeometryMethod.cs ├── IconfontX.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── icon.ico ├── README.md └── bin ├── GeometryX.exe ├── GeometryX.exe.config ├── GifX.exe ├── GifX.exe.config ├── HandyControl.dll ├── ICSharpCode.AvalonEdit.dll ├── IconfontX.exe └── IconfontX.exe.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/.gitignore -------------------------------------------------------------------------------- /GeometryX/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/App.config -------------------------------------------------------------------------------- /GeometryX/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/App.xaml -------------------------------------------------------------------------------- /GeometryX/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/App.xaml.cs -------------------------------------------------------------------------------- /GeometryX/GeometryX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/GeometryX.csproj -------------------------------------------------------------------------------- /GeometryX/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/MainWindow.xaml -------------------------------------------------------------------------------- /GeometryX/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/MainWindow.xaml.cs -------------------------------------------------------------------------------- /GeometryX/Model/DataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Model/DataModel.cs -------------------------------------------------------------------------------- /GeometryX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GeometryX/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GeometryX/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Properties/Resources.resx -------------------------------------------------------------------------------- /GeometryX/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GeometryX/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Properties/Settings.settings -------------------------------------------------------------------------------- /GeometryX/Resources/Brush.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Resources/Brush.xaml -------------------------------------------------------------------------------- /GeometryX/Resources/Geometry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Resources/Geometry.xaml -------------------------------------------------------------------------------- /GeometryX/Resources/Style.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/Resources/Style.xaml -------------------------------------------------------------------------------- /GeometryX/View/IconButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/View/IconButton.xaml -------------------------------------------------------------------------------- /GeometryX/View/IconButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/View/IconButton.xaml.cs -------------------------------------------------------------------------------- /GeometryX/ViewModel/MainWindowVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/ViewModel/MainWindowVM.cs -------------------------------------------------------------------------------- /GeometryX/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GeometryX/icon.ico -------------------------------------------------------------------------------- /GifX/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/App.config -------------------------------------------------------------------------------- /GifX/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/App.xaml -------------------------------------------------------------------------------- /GifX/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/App.xaml.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/AnimatedGif.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/AnimatedGif.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/AnimatedGifCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/AnimatedGifCreator.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/Extensions.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/GifClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/GifClass.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/GifQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/GifQuality.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/GrayscaleQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/GrayscaleQuantizer.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/Helper.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/OctreeQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/OctreeQuantizer.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/PaletteQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/PaletteQuantizer.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/Quantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/Quantizer.cs -------------------------------------------------------------------------------- /GifX/GIFmaker/VideoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFmaker/VideoEncoder.cs -------------------------------------------------------------------------------- /GifX/GIFplayer/GifImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GIFplayer/GifImage.cs -------------------------------------------------------------------------------- /GifX/Gif.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Gif.xaml -------------------------------------------------------------------------------- /GifX/Gif.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Gif.xaml.cs -------------------------------------------------------------------------------- /GifX/GifX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/GifX.csproj -------------------------------------------------------------------------------- /GifX/Helper/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Helper/DispatcherHelper.cs -------------------------------------------------------------------------------- /GifX/Image/Camera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Image/Camera.ico -------------------------------------------------------------------------------- /GifX/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/MainWindow.xaml -------------------------------------------------------------------------------- /GifX/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/MainWindow.xaml.cs -------------------------------------------------------------------------------- /GifX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GifX/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GifX/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Properties/Resources.resx -------------------------------------------------------------------------------- /GifX/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GifX/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/Properties/Settings.settings -------------------------------------------------------------------------------- /GifX/ViewModel/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/ViewModel/MainWindowViewModel.cs -------------------------------------------------------------------------------- /GifX/ViewModel/WaitingWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/ViewModel/WaitingWindowViewModel.cs -------------------------------------------------------------------------------- /GifX/WaitingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/WaitingWindow.xaml -------------------------------------------------------------------------------- /GifX/WaitingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/GifX/WaitingWindow.xaml.cs -------------------------------------------------------------------------------- /HandyX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/HandyX.sln -------------------------------------------------------------------------------- /IconfontX/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/App.config -------------------------------------------------------------------------------- /IconfontX/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/App.xaml -------------------------------------------------------------------------------- /IconfontX/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/App.xaml.cs -------------------------------------------------------------------------------- /IconfontX/GeometryMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/GeometryMethod.cs -------------------------------------------------------------------------------- /IconfontX/IconfontX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/IconfontX.csproj -------------------------------------------------------------------------------- /IconfontX/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/MainWindow.xaml -------------------------------------------------------------------------------- /IconfontX/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/MainWindow.xaml.cs -------------------------------------------------------------------------------- /IconfontX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IconfontX/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IconfontX/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/Properties/Resources.resx -------------------------------------------------------------------------------- /IconfontX/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /IconfontX/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/Properties/Settings.settings -------------------------------------------------------------------------------- /IconfontX/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/IconfontX/icon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/README.md -------------------------------------------------------------------------------- /bin/GeometryX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/GeometryX.exe -------------------------------------------------------------------------------- /bin/GeometryX.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/GeometryX.exe.config -------------------------------------------------------------------------------- /bin/GifX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/GifX.exe -------------------------------------------------------------------------------- /bin/GifX.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/GifX.exe.config -------------------------------------------------------------------------------- /bin/HandyControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/HandyControl.dll -------------------------------------------------------------------------------- /bin/ICSharpCode.AvalonEdit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/ICSharpCode.AvalonEdit.dll -------------------------------------------------------------------------------- /bin/IconfontX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/IconfontX.exe -------------------------------------------------------------------------------- /bin/IconfontX.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AFei19911012/HandyX/HEAD/bin/IconfontX.exe.config --------------------------------------------------------------------------------