├── 拾色器 ├── .vs │ └── 拾色器 │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── 拾色器 │ ├── obj │ │ ├── Debug │ │ │ ├── 拾色器.csproj.CoreCompileInputs.cache │ │ │ ├── Void.baml │ │ │ ├── 拾色器.exe │ │ │ ├── 拾色器.pdb │ │ │ ├── MainWindow.baml │ │ │ ├── 拾色器.g.resources │ │ │ ├── 拾色器_MarkupCompile.lref │ │ │ ├── 拾色器.Properties.Resources.resources │ │ │ ├── 拾色器.csproj.GenerateResource.cache │ │ │ ├── 拾色器.csprojAssemblyReference.cache │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── 拾色器_MarkupCompile.cache │ │ │ ├── 拾色器_MarkupCompile.i.cache │ │ │ ├── 拾色器.csproj.FileListAbsolute.txt │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Void.g.cs │ │ │ ├── Void.g.i.cs │ │ │ ├── MainWindow.g.cs │ │ │ └── MainWindow.g.i.cs │ │ └── Release │ │ │ ├── 拾色器.csproj.CoreCompileInputs.cache │ │ │ ├── 拾色器.exe │ │ │ ├── 拾色器.pdb │ │ │ ├── Void.baml │ │ │ ├── MainWindow.baml │ │ │ ├── 拾色器.g.resources │ │ │ ├── 拾色器_MarkupCompile.lref │ │ │ ├── 拾色器.Properties.Resources.resources │ │ │ ├── 拾色器.csproj.GenerateResource.cache │ │ │ ├── 拾色器.csprojAssemblyReference.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── 拾色器_MarkupCompile.cache │ │ │ ├── 拾色器.csproj.FileListAbsolute.txt │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Void.g.cs │ │ │ ├── Void.g.i.cs │ │ │ └── MainWindow.g.cs │ ├── image │ │ └── ico.ico │ ├── bin │ │ ├── Debug │ │ │ ├── 拾色器.exe │ │ │ ├── 拾色器.pdb │ │ │ └── 拾色器.exe.config │ │ └── Release │ │ │ ├── 拾色器.exe │ │ │ ├── 拾色器.pdb │ │ │ └── 拾色器.exe.config │ ├── App.config │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── App.xaml.cs │ ├── Data.cs │ ├── App.xaml │ ├── Void.xaml │ ├── Class │ │ ├── LeyoutProcess.cs │ │ ├── AidClass.cs │ │ └── MainClass.cs │ ├── Void.xaml.cs │ ├── Function.cs │ ├── MainWindow.xaml.cs │ ├── MainWindow.xaml │ └── 拾色器.csproj └── 拾色器.sln ├── 拾色器精简 ├── .vs │ └── 拾色器精简 │ │ └── v16 │ │ ├── Server │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ └── .suo ├── 拾色器精简 │ ├── obj │ │ ├── Debug │ │ │ ├── 拾色器精简.csproj.CoreCompileInputs.cache │ │ │ ├── NULL.baml │ │ │ ├── 拾色器精简.exe │ │ │ ├── 拾色器精简.pdb │ │ │ ├── MainWindow.baml │ │ │ ├── 拾色器精简.g.resources │ │ │ ├── 拾色器精简_MarkupCompile.lref │ │ │ ├── 拾色器精简.csproj.GenerateResource.cache │ │ │ ├── 拾色器精简.csprojAssemblyReference.cache │ │ │ ├── 拾色器精简.Properties.Resources.resources │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── 拾色器精简_MarkupCompile.cache │ │ │ ├── 拾色器精简_MarkupCompile.i.cache │ │ │ ├── 拾色器精简.csproj.FileListAbsolute.txt │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── NULL.g.cs │ │ │ ├── NULL.g.i.cs │ │ │ ├── MainWindow.g.cs │ │ │ └── MainWindow.g.i.cs │ │ └── Release │ │ │ ├── 拾色器精简.csproj.CoreCompileInputs.cache │ │ │ ├── NULL.baml │ │ │ ├── 拾色器精简.exe │ │ │ ├── 拾色器精简.pdb │ │ │ ├── MainWindow.baml │ │ │ ├── 拾色器精简.g.resources │ │ │ ├── 拾色器精简_MarkupCompile.lref │ │ │ ├── 拾色器精简_MarkupCompile.i.lref │ │ │ ├── 拾色器精简.csproj.GenerateResource.cache │ │ │ ├── 拾色器精简.csprojAssemblyReference.cache │ │ │ ├── 拾色器精简.Properties.Resources.resources │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── 拾色器精简_MarkupCompile.cache │ │ │ ├── 拾色器精简_MarkupCompile.i.cache │ │ │ ├── 拾色器精简.csproj.FileListAbsolute.txt │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── NULL.g.cs │ │ │ ├── NULL.g.i.cs │ │ │ ├── MainWindow.g.cs │ │ │ └── MainWindow.g.i.cs │ ├── image │ │ ├── 2.ico │ │ └── 移动.png │ ├── bin │ │ ├── Debug │ │ │ ├── 拾色器精简.exe │ │ │ ├── 拾色器精简.pdb │ │ │ └── 拾色器精简.exe.config │ │ └── Release │ │ │ ├── 拾色器精简.exe │ │ │ ├── 拾色器精简.pdb │ │ │ └── 拾色器精简.exe.config │ ├── App.config │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── App.xaml.cs │ ├── App.xaml │ ├── Data.cs │ ├── NULL.xaml │ ├── NULL.xaml.cs │ ├── MainWindow.xaml │ ├── AidClass.cs │ ├── MainWindow.xaml.cs │ ├── MainClass.cs │ └── 拾色器精简.csproj └── 拾色器精简.sln └── README.md /拾色器/.vs/拾色器/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /拾色器精简/.vs/拾色器精简/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ColorPickerCode 2 | * Application Dome:https://www.bilibili.com/video/av52108851/ 3 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 021f82f3137ddc88642d57588073cb186776d060 2 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fcd5ecc497e0f2e008fba26e39a4e69d8671251b 2 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 62ce073a63b966d5a7faec5c78a97d8241441dbc 2 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | df49269542b5b9251b084a0c1d0355f764570e3f 2 | -------------------------------------------------------------------------------- /拾色器/.vs/拾色器/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/.vs/拾色器/v16/.suo -------------------------------------------------------------------------------- /拾色器/拾色器/image/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/image/ico.ico -------------------------------------------------------------------------------- /拾色器精简/.vs/拾色器精简/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/.vs/拾色器精简/v16/.suo -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/image/2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/image/2.ico -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/image/移动.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/image/移动.png -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Debug/拾色器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/bin/Debug/拾色器.exe -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Debug/拾色器.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/bin/Debug/拾色器.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Release/拾色器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/bin/Release/拾色器.exe -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Release/拾色器.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/bin/Release/拾色器.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/Void.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/Void.baml -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.exe -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.exe -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/Void.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/Void.baml -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Debug/拾色器精简.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/bin/Debug/拾色器精简.exe -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Debug/拾色器精简.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/bin/Debug/拾色器精简.pdb -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/NULL.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/NULL.baml -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.exe -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.g.resources -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Release/拾色器精简.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/bin/Release/拾色器精简.exe -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Release/拾色器精简.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/bin/Release/拾色器精简.pdb -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/NULL.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/NULL.baml -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.exe -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.pdb -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FD:\_NET&C#\WPF\拾色器\拾色器\MainWindow.xaml;; 4 | FD:\_NET&C#\WPF\拾色器\拾色器\Void.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/MainWindow.baml -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.g.resources -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FD:\_NET&C#\WPF\拾色器\拾色器\MainWindow.xaml;; 4 | FD:\_NET&C#\WPF\拾色器\拾色器\Void.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.g.resources -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/MainWindow.baml -------------------------------------------------------------------------------- /拾色器/.vs/拾色器/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/.vs/拾色器/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.g.resources -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\MainWindow.xaml;; 4 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\NULL.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\MainWindow.xaml;; 4 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\NULL.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/.vs/拾色器精简/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/.vs/拾色器精简/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 | 2 | 3 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\MainWindow.xaml;; 4 | FD:\_NET&C#\WPF\拾色器精简\拾色器精简\NULL.xaml;; 5 | 6 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.Properties.Resources.resources -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/拾色器.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.Properties.Resources.resources -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/拾色器.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/拾色器精简.Properties.Resources.resources -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/拾色器精简.Properties.Resources.resources -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器/拾色器/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkCodeStudio/ColorPickerCode/master/拾色器精简/拾色器精简/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /拾色器/拾色器/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Debug/拾色器.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器/拾色器/bin/Release/拾色器.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Debug/拾色器精简.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/bin/Release/拾色器精简.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /拾色器/拾色器/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | 拾色器 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\ 8 | 拾色器 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\_NET&C#\WPF\拾色器\拾色器\App.xaml 13 | 2842117232 14 | 15 | 111224809939 16 | 151270957945 17 | MainWindow.xaml;Void.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | 拾色器 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\ 8 | 拾色器 9 | none 10 | false 11 | TRACE 12 | D:\_NET&C#\WPF\拾色器\拾色器\App.xaml 13 | 2842117232 14 | 15 | 111224809939 16 | 151270957945 17 | MainWindow.xaml;Void.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | 拾色器 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\ 8 | 拾色器 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\_NET&C#\WPF\拾色器\拾色器\App.xaml 13 | 2842117232 14 | 15 | 121101985674 16 | 151270957945 17 | MainWindow.xaml;Void.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | 拾色器精简 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\ 8 | 拾色器精简 9 | none 10 | false 11 | TRACE 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\App.xaml 13 | 2983421712 14 | 15 | 9-249550615 16 | 151270957945 17 | MainWindow.xaml;NULL.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | 拾色器精简 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\ 8 | 拾色器精简 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\App.xaml 13 | 2983421712 14 | 15 | 9-249550615 16 | 151270957945 17 | MainWindow.xaml;NULL.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | 拾色器精简 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\ 8 | 拾色器精简 9 | none 10 | false 11 | DEBUG;TRACE 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\App.xaml 13 | 2983421712 14 | 15 | 10-372374880 16 | 151270957945 17 | MainWindow.xaml;NULL.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | 拾色器精简 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\ 8 | 拾色器精简 9 | none 10 | false 11 | TRACE 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\App.xaml 13 | 2983421712 14 | 15 | 10-372374880 16 | 151270957945 17 | MainWindow.xaml;NULL.xaml; 18 | 19 | True 20 | 21 | -------------------------------------------------------------------------------- /拾色器/拾色器/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace 拾色器 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /拾色器/拾色器/Data.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Media; 2 | 3 | namespace 拾色器 4 | { 5 | class Data 6 | { 7 | public static Color Color { get; set; } 8 | 9 | public static int Red { get; set; } 10 | public static int Green { get; set; } 11 | public static int Blue { get; set; } 12 | 13 | public static int Count { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /拾色器/拾色器/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace 拾色器精简 10 | { 11 | /// 12 | /// App.xaml 的交互逻辑 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/Data.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Media; 7 | 8 | namespace 拾色器精简 9 | { 10 | static class Data 11 | { 12 | public static Color Color { get; set; } 13 | public static int Red { get; set; } 14 | public static int Green { get; set; } 15 | public static int Blue { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/NULL.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /拾色器/拾色器/Void.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Debug/拾色器.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Debug\拾色器.exe.config 2 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Debug\拾色器.exe 3 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Debug\拾色器.pdb 4 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.csprojAssemblyReference.cache 5 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\MainWindow.g.cs 6 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\App.g.cs 7 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器_MarkupCompile.cache 8 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器_MarkupCompile.lref 9 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\MainWindow.baml 10 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.g.resources 11 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.Properties.Resources.resources 12 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.csproj.GenerateResource.cache 13 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.csproj.CoreCompileInputs.cache 14 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.exe 15 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\拾色器.pdb 16 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\Void.g.cs 17 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Debug\Void.baml 18 | -------------------------------------------------------------------------------- /拾色器/拾色器/obj/Release/拾色器.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Release\拾色器.exe.config 2 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Release\拾色器.exe 3 | D:\_NET&C#\WPF\拾色器\拾色器\bin\Release\拾色器.pdb 4 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.csprojAssemblyReference.cache 5 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\MainWindow.g.cs 6 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\Void.g.cs 7 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\App.g.cs 8 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器_MarkupCompile.cache 9 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器_MarkupCompile.lref 10 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\MainWindow.baml 11 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\Void.baml 12 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.g.resources 13 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.Properties.Resources.resources 14 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.csproj.GenerateResource.cache 15 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.csproj.CoreCompileInputs.cache 16 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.exe 17 | D:\_NET&C#\WPF\拾色器\拾色器\obj\Release\拾色器.pdb 18 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Debug/拾色器精简.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Debug\拾色器精简.exe.config 2 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Debug\拾色器精简.exe 3 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Debug\拾色器精简.pdb 4 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.csprojAssemblyReference.cache 5 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\MainWindow.g.cs 6 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\App.g.cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简_MarkupCompile.cache 8 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简_MarkupCompile.lref 9 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\MainWindow.baml 10 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.g.resources 11 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.Properties.Resources.resources 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.csproj.GenerateResource.cache 13 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.csproj.CoreCompileInputs.cache 14 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.exe 15 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\拾色器精简.pdb 16 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\NULL.g.cs 17 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Debug\NULL.baml 18 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/obj/Release/拾色器精简.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Release\拾色器精简.exe.config 2 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Release\拾色器精简.exe 3 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\bin\Release\拾色器精简.pdb 4 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\MainWindow.g.cs 5 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\NULL.g.cs 6 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\App.g.cs 7 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简_MarkupCompile.cache 8 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简_MarkupCompile.lref 9 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\MainWindow.baml 10 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\NULL.baml 11 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.g.resources 12 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.Properties.Resources.resources 13 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.csproj.GenerateResource.cache 14 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.csproj.CoreCompileInputs.cache 15 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.exe 16 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.pdb 17 | D:\_NET&C#\WPF\拾色器精简\拾色器精简\obj\Release\拾色器精简.csprojAssemblyReference.cache 18 | -------------------------------------------------------------------------------- /拾色器/拾色器/Class/LeyoutProcess.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | namespace 拾色器 3 | { 4 | class LeyoutProcess 5 | { 6 | public static void UpdataTextBox(MainWindow obj) 7 | { 8 | UpdataTxtFun(obj.txtbokColorFour, obj.txtboxHexColorFour, obj.txtbokColorFives, obj.txtboxHexColorFives); 9 | UpdataTxtFun(obj.txtbokColorThree, obj.txtboxHexColorThree, obj.txtbokColorFour, obj.txtboxHexColorFour); 10 | UpdataTxtFun(obj.txtbokColorTwo, obj.txtboxHexColorTwo, obj.txtbokColorThree, obj.txtboxHexColorThree); 11 | UpdataTxtFun(obj.txtbokColorOne, obj.txtboxHexColorOne, obj.txtbokColorTwo, obj.txtboxHexColorTwo); 12 | UpdataTxtFun(obj.txtbokColorMaster, obj.txtboxHexColorMaster, obj.txtbokColorOne, obj.txtboxHexColorOne); 13 | } 14 | 15 | private static void UpdataTxtFun(TextBlock bok1, TextBox box1, TextBlock bok2, TextBox box2 ) 16 | { 17 | if (box1.Text != "") 18 | { 19 | bok2.Background = bok1.Background; 20 | box2.Text = box1.Text; 21 | } 22 | } 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /拾色器/拾色器/Void.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Input; 3 | 4 | 5 | namespace 拾色器 6 | { 7 | /// 8 | /// Void.xaml 的交互逻辑 9 | /// 10 | public partial class Void : Window 11 | { 12 | AidClass Aid = new AidClass();//获取截屏的功能类 13 | MainClass mainClass = new MainClass();//像素颜色转换的功能类 14 | 15 | 16 | int X = 0; 17 | int Y = 0; 18 | 19 | public Void() 20 | { 21 | InitializeComponent(); 22 | x.Source = Aid.GetScreenSnapshot();//获取截屏 23 | } 24 | 25 | private void Window_MouseDown(object sender, MouseButtonEventArgs e) 26 | { 27 | int r, g, b; r = g = b = 0; 28 | //将某个像素的颜色提取出来 29 | Data.Color = mainClass.GetPixelColor(X, Y,ref r,ref g,ref b); 30 | 31 | Data.Red = r; 32 | Data.Green = g; 33 | Data.Blue = b; 34 | this.Close(); 35 | } 36 | 37 | private void Window_MouseMove(object sender, MouseEventArgs e) 38 | { 39 | mainClass.GetMove(ref X, ref Y); 40 | } 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /拾色器/拾色器.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.28803.202 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "拾色器", "拾色器\拾色器.csproj", "{D207A30F-445D-4C6B-B9C0-2B12D676D045}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D207A30F-445D-4C6B-B9C0-2B12D676D045}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D207A30F-445D-4C6B-B9C0-2B12D676D045}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D207A30F-445D-4C6B-B9C0-2B12D676D045}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {D207A30F-445D-4C6B-B9C0-2B12D676D045}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {431E515D-EB4A-4621-8A34-29334ECC04D4} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.28803.202 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "拾色器精简", "拾色器精简\拾色器精简.csproj", "{42CF678A-0ACE-425D-8FD0-C10FEFAA5D3C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {42CF678A-0ACE-425D-8FD0-C10FEFAA5D3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {42CF678A-0ACE-425D-8FD0-C10FEFAA5D3C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {42CF678A-0ACE-425D-8FD0-C10FEFAA5D3C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {42CF678A-0ACE-425D-8FD0-C10FEFAA5D3C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {44CB8810-723F-4D83-AC75-50C9A5F3E7A6} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /拾色器/拾色器/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 拾色器.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace 拾色器精简.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/NULL.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Shapes; 14 | 15 | namespace 拾色器精简 16 | { 17 | /// 18 | /// NULL.xaml 的交互逻辑 19 | /// 20 | public partial class NULL : Window 21 | { 22 | AidClass Aid = new AidClass(); 23 | MainClass mainClass = new MainClass(); 24 | 25 | int x = 0; 26 | int y = 0; 27 | 28 | public NULL() 29 | { 30 | InitializeComponent(); 31 | img.Source = Aid.GetScreenSnapshot(); 32 | } 33 | 34 | private void Window_MouseMove(object sender, MouseEventArgs e) 35 | { 36 | mainClass.GetMove(ref x, ref y); 37 | } 38 | 39 | private void Window_MouseDown(object sender, MouseButtonEventArgs e) 40 | { 41 | int r, g, b; r = g = b = 0; 42 | Data.Color = mainClass.GetPixelColor(x, y, ref r, ref g, ref b); 43 | 44 | Data.Red = r; 45 | Data.Green = g; 46 | Data.Blue = b; 47 | 48 | this.Close(); 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /拾色器精简/拾色器精简/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 |