diff --git a/XP.Common/Configs/SerilogConfig.cs b/XP.Common/Configs/SerilogConfig.cs index 8fa1fad..ddc3fd6 100644 --- a/XP.Common/Configs/SerilogConfig.cs +++ b/XP.Common/Configs/SerilogConfig.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace XP.Common.Configs diff --git a/XP.Common/Configs/SqliteConfig.cs b/XP.Common/Configs/SqliteConfig.cs index 7f7c57d..28eae43 100644 --- a/XP.Common/Configs/SqliteConfig.cs +++ b/XP.Common/Configs/SqliteConfig.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/XP.Common/Database/Helpers/PaginationHelper.cs b/XP.Common/Database/Helpers/PaginationHelper.cs index db11e6c..f7c74c2 100644 --- a/XP.Common/Database/Helpers/PaginationHelper.cs +++ b/XP.Common/Database/Helpers/PaginationHelper.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Helpers/SqlBuilderHelper.cs b/XP.Common/Database/Helpers/SqlBuilderHelper.cs index d895722..e5c1a3e 100644 --- a/XP.Common/Database/Helpers/SqlBuilderHelper.cs +++ b/XP.Common/Database/Helpers/SqlBuilderHelper.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Helpers/SqliteParameterHelper.cs b/XP.Common/Database/Helpers/SqliteParameterHelper.cs index 555f4b7..435c186 100644 --- a/XP.Common/Database/Helpers/SqliteParameterHelper.cs +++ b/XP.Common/Database/Helpers/SqliteParameterHelper.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Implementations/DbExecuteResult.cs b/XP.Common/Database/Implementations/DbExecuteResult.cs index 55f8492..c90febd 100644 --- a/XP.Common/Database/Implementations/DbExecuteResult.cs +++ b/XP.Common/Database/Implementations/DbExecuteResult.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Implementations/SqliteContext.cs b/XP.Common/Database/Implementations/SqliteContext.cs index 33ef939..e77cc05 100644 --- a/XP.Common/Database/Implementations/SqliteContext.cs +++ b/XP.Common/Database/Implementations/SqliteContext.cs @@ -1,4 +1,4 @@ -using Microsoft.Data.Sqlite; +using Microsoft.Data.Sqlite; using System; using System.Collections.Generic; using System.Data; diff --git a/XP.Common/Database/Implementations/SqliteTransaction.cs b/XP.Common/Database/Implementations/SqliteTransaction.cs index c0266d1..30c6354 100644 --- a/XP.Common/Database/Implementations/SqliteTransaction.cs +++ b/XP.Common/Database/Implementations/SqliteTransaction.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Interfaces/IDbContext.cs b/XP.Common/Database/Interfaces/IDbContext.cs index 8cab642..cff3d9b 100644 --- a/XP.Common/Database/Interfaces/IDbContext.cs +++ b/XP.Common/Database/Interfaces/IDbContext.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/XP.Common/Database/Interfaces/IDbExecuteResult.cs b/XP.Common/Database/Interfaces/IDbExecuteResult.cs index 9fdefc5..d043f6d 100644 --- a/XP.Common/Database/Interfaces/IDbExecuteResult.cs +++ b/XP.Common/Database/Interfaces/IDbExecuteResult.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Interfaces/IDbTransaction.cs b/XP.Common/Database/Interfaces/IDbTransaction.cs index cf0c862..323b195 100644 --- a/XP.Common/Database/Interfaces/IDbTransaction.cs +++ b/XP.Common/Database/Interfaces/IDbTransaction.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Models/PaginationRequest.cs b/XP.Common/Database/Models/PaginationRequest.cs index f5aa086..a197695 100644 --- a/XP.Common/Database/Models/PaginationRequest.cs +++ b/XP.Common/Database/Models/PaginationRequest.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Database/Models/PaginationResponse.cs b/XP.Common/Database/Models/PaginationResponse.cs index 6da1dfa..5e16d8e 100644 --- a/XP.Common/Database/Models/PaginationResponse.cs +++ b/XP.Common/Database/Models/PaginationResponse.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Common/Helpers/ConfigLoader.cs b/XP.Common/Helpers/ConfigLoader.cs index 4de6137..dd70a1b 100644 --- a/XP.Common/Helpers/ConfigLoader.cs +++ b/XP.Common/Helpers/ConfigLoader.cs @@ -1,4 +1,4 @@ -using System.Configuration; +using System.Configuration; using XP.Common.Configs; using XP.Common.Dump.Configs; diff --git a/XP.Common/Logging/Implementations/SerilogLoggerService.cs b/XP.Common/Logging/Implementations/SerilogLoggerService.cs index f920bc1..d630ddd 100644 --- a/XP.Common/Logging/Implementations/SerilogLoggerService.cs +++ b/XP.Common/Logging/Implementations/SerilogLoggerService.cs @@ -1,4 +1,4 @@ -using System; +using System; using Serilog; using XP.Common.Logging.Interfaces; diff --git a/XP.Common/Logging/Interfaces/ILoggerService.cs b/XP.Common/Logging/Interfaces/ILoggerService.cs index 772088a..1b73013 100644 --- a/XP.Common/Logging/Interfaces/ILoggerService.cs +++ b/XP.Common/Logging/Interfaces/ILoggerService.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace XP.Common.Logging.Interfaces { diff --git a/XP.Common/Logging/SerilogInitializer.cs b/XP.Common/Logging/SerilogInitializer.cs index 1eb3456..9fd141a 100644 --- a/XP.Common/Logging/SerilogInitializer.cs +++ b/XP.Common/Logging/SerilogInitializer.cs @@ -1,4 +1,4 @@ -using System; +using System; using Serilog; using Serilog.Events; using XP.Common.Configs; diff --git a/XP.Common/Module/CommonModule.cs b/XP.Common/Module/CommonModule.cs index 1d5c5a8..e15672d 100644 --- a/XP.Common/Module/CommonModule.cs +++ b/XP.Common/Module/CommonModule.cs @@ -1,4 +1,4 @@ -using System; +using System; using Prism.Ioc; using Prism.Modularity; using XP.Common.Dump.Configs; diff --git a/XP.Common/Resources/Resources.Designer.cs b/XP.Common/Resources/Resources.Designer.cs index 01a5689..733a9a4 100644 --- a/XP.Common/Resources/Resources.Designer.cs +++ b/XP.Common/Resources/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.Detector/Module/DetectorModule.cs b/XP.Hardware.Detector/Module/DetectorModule.cs index de49d54..002ddd0 100644 --- a/XP.Hardware.Detector/Module/DetectorModule.cs +++ b/XP.Hardware.Detector/Module/DetectorModule.cs @@ -1,4 +1,4 @@ -using Prism.Ioc; +using Prism.Ioc; using Prism.Modularity; using System.Resources; using XP.Common.Localization; diff --git a/XP.Hardware.Detector/Resources/Resources.Designer.cs b/XP.Hardware.Detector/Resources/Resources.Designer.cs index 0ba5c7a..9615fbd 100644 --- a/XP.Hardware.Detector/Resources/Resources.Designer.cs +++ b/XP.Hardware.Detector/Resources/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.MotionControl/Config/ConfigLoader.cs b/XP.Hardware.MotionControl/Config/ConfigLoader.cs index 2673d03..40d81f8 100644 --- a/XP.Hardware.MotionControl/Config/ConfigLoader.cs +++ b/XP.Hardware.MotionControl/Config/ConfigLoader.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Configuration; using System.IO; using XP.Common.Logging.Interfaces; diff --git a/XP.Hardware.MotionControl/Config/MotionControlConfig.cs b/XP.Hardware.MotionControl/Config/MotionControlConfig.cs index 19260e9..f2a2473 100644 --- a/XP.Hardware.MotionControl/Config/MotionControlConfig.cs +++ b/XP.Hardware.MotionControl/Config/MotionControlConfig.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using XP.Hardware.MotionControl.Abstractions.Enums; namespace XP.Hardware.MotionControl.Config diff --git a/XP.Hardware.MotionControl/Resources/Resources.Designer.cs b/XP.Hardware.MotionControl/Resources/Resources.Designer.cs index 8b4707d..0830aba 100644 --- a/XP.Hardware.MotionControl/Resources/Resources.Designer.cs +++ b/XP.Hardware.MotionControl/Resources/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.MotionControl/Services/MotionControlService.cs b/XP.Hardware.MotionControl/Services/MotionControlService.cs index ecf36e7..a8de00a 100644 --- a/XP.Hardware.MotionControl/Services/MotionControlService.cs +++ b/XP.Hardware.MotionControl/Services/MotionControlService.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Threading; diff --git a/XP.Hardware.MotionControl/ViewModels/MotionDebugWindowViewModel.cs b/XP.Hardware.MotionControl/ViewModels/MotionDebugWindowViewModel.cs index d3b357d..37ab76e 100644 --- a/XP.Hardware.MotionControl/ViewModels/MotionDebugWindowViewModel.cs +++ b/XP.Hardware.MotionControl/ViewModels/MotionDebugWindowViewModel.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Windows; using Prism.Commands; using Prism.Events; diff --git a/XP.Hardware.MotionControl/Views/MotionControlView.xaml b/XP.Hardware.MotionControl/Views/MotionControlView.xaml index 9335800..1fe6569 100644 --- a/XP.Hardware.MotionControl/Views/MotionControlView.xaml +++ b/XP.Hardware.MotionControl/Views/MotionControlView.xaml @@ -1,4 +1,4 @@ - // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.PLC/Services/PlcService.cs b/XP.Hardware.PLC/Services/PlcService.cs index 1996c77..d163de6 100644 --- a/XP.Hardware.PLC/Services/PlcService.cs +++ b/XP.Hardware.PLC/Services/PlcService.cs @@ -1,4 +1,4 @@ -using Prism.Mvvm; +using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; diff --git a/XP.Hardware.PLC/Views/PlcAddrConfigEditorWindow.xaml b/XP.Hardware.PLC/Views/PlcAddrConfigEditorWindow.xaml index 13a6013..7b69c7c 100644 --- a/XP.Hardware.PLC/Views/PlcAddrConfigEditorWindow.xaml +++ b/XP.Hardware.PLC/Views/PlcAddrConfigEditorWindow.xaml @@ -1,4 +1,4 @@ - // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.RaySource/Abstractions/IXRaySource.cs b/XP.Hardware.RaySource/Abstractions/IXRaySource.cs index dd254a7..a24d63c 100644 --- a/XP.Hardware.RaySource/Abstractions/IXRaySource.cs +++ b/XP.Hardware.RaySource/Abstractions/IXRaySource.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace XP.Hardware.RaySource.Abstractions { diff --git a/XP.Hardware.RaySource/Abstractions/XRayResult.cs b/XP.Hardware.RaySource/Abstractions/XRayResult.cs index 0f8fe5d..012a325 100644 --- a/XP.Hardware.RaySource/Abstractions/XRayResult.cs +++ b/XP.Hardware.RaySource/Abstractions/XRayResult.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/XP.Hardware.RaySource/Abstractions/XRaySourceBase.cs b/XP.Hardware.RaySource/Abstractions/XRaySourceBase.cs index fd53e23..da7b18b 100644 --- a/XP.Hardware.RaySource/Abstractions/XRaySourceBase.cs +++ b/XP.Hardware.RaySource/Abstractions/XRaySourceBase.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace XP.Hardware.RaySource.Abstractions { diff --git a/XP.Hardware.RaySource/Config/RaySourceConfig.cs b/XP.Hardware.RaySource/Config/RaySourceConfig.cs index 760eff2..f91c5b7 100644 --- a/XP.Hardware.RaySource/Config/RaySourceConfig.cs +++ b/XP.Hardware.RaySource/Config/RaySourceConfig.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace XP.Hardware.RaySource.Config { diff --git a/XP.Hardware.RaySource/Converters/RaySourceOperateConverter.cs b/XP.Hardware.RaySource/Converters/RaySourceOperateConverter.cs index 8beff9a..a795994 100644 --- a/XP.Hardware.RaySource/Converters/RaySourceOperateConverter.cs +++ b/XP.Hardware.RaySource/Converters/RaySourceOperateConverter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.Linq; diff --git a/XP.Hardware.RaySource/Module/RaySourceModule.cs b/XP.Hardware.RaySource/Module/RaySourceModule.cs index 683b8c9..c9ef636 100644 --- a/XP.Hardware.RaySource/Module/RaySourceModule.cs +++ b/XP.Hardware.RaySource/Module/RaySourceModule.cs @@ -1,4 +1,4 @@ -using Prism.Ioc; +using Prism.Ioc; using Prism.Modularity; using System.Resources; using XP.Common.Localization; diff --git a/XP.Hardware.RaySource/Resources/Resources.Designer.cs b/XP.Hardware.RaySource/Resources/Resources.Designer.cs index 5dbe68c..689e6f6 100644 --- a/XP.Hardware.RaySource/Resources/Resources.Designer.cs +++ b/XP.Hardware.RaySource/Resources/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 diff --git a/XP.Hardware.RaySource/ViewModels/RaySourceConfigViewModel.cs b/XP.Hardware.RaySource/ViewModels/RaySourceConfigViewModel.cs index c9252f3..6516e68 100644 --- a/XP.Hardware.RaySource/ViewModels/RaySourceConfigViewModel.cs +++ b/XP.Hardware.RaySource/ViewModels/RaySourceConfigViewModel.cs @@ -1,4 +1,4 @@ -using Prism.Commands; +using Prism.Commands; using Prism.Events; using Prism.Mvvm; using System; diff --git a/XP.Hardware.RaySource/ViewModels/RaySourceOperateViewModel.cs b/XP.Hardware.RaySource/ViewModels/RaySourceOperateViewModel.cs index 2b863f9..6f1e3a4 100644 --- a/XP.Hardware.RaySource/ViewModels/RaySourceOperateViewModel.cs +++ b/XP.Hardware.RaySource/ViewModels/RaySourceOperateViewModel.cs @@ -1,4 +1,4 @@ -using Prism.Commands; +using Prism.Commands; using Prism.Events; using Prism.Mvvm; using System; diff --git a/XP.Hardware.RaySource/Views/RaySourceConfigView.xaml b/XP.Hardware.RaySource/Views/RaySourceConfigView.xaml index 21fcec4..059e456 100644 --- a/XP.Hardware.RaySource/Views/RaySourceConfigView.xaml +++ b/XP.Hardware.RaySource/Views/RaySourceConfigView.xaml @@ -1,4 +1,4 @@ - - /// 测试辅助工具:创?Mock 和测试用图像 + /// 测试辅助工具:创�?Mock 和测试用图像 /// internal static class TestHelpers { public static readonly string[] DefaultKeys = { "Blur", "Sharpen", "Threshold" }; /// - /// 创建一?1x1 像素?BitmapSource,用于测? + /// 创建一�?1x1 像素�?BitmapSource,用于测�? /// public static BitmapSource CreateTestBitmap(int width = 4, int height = 4) { @@ -31,13 +31,13 @@ namespace XplorePlane.Tests.Helpers } /// - /// 创建一个超大图像(用于测试预览缩放? + /// 创建一个超大图像(用于测试预览缩放�? /// public static BitmapSource CreateLargeBitmap(int width = 4096, int height = 4096) => CreateTestBitmap(width, height); /// - /// 创建标准 Mock IImageProcessingService,注?DefaultKeys 中的算子 + /// 创建标准 Mock IImageProcessingService,注�?DefaultKeys 中的算子 /// public static Mock CreateMockImageService( string[]? keys = null, diff --git a/XplorePlane/App.xaml b/XplorePlane/App.xaml index 331968a..5445b1b 100644 --- a/XplorePlane/App.xaml +++ b/XplorePlane/App.xaml @@ -1,4 +1,4 @@ - diff --git a/XplorePlane/App.xaml.cs b/XplorePlane/App.xaml.cs index 9005fb3..6f1bd73 100644 --- a/XplorePlane/App.xaml.cs +++ b/XplorePlane/App.xaml.cs @@ -1,4 +1,4 @@ -using DryIoc; +using DryIoc; using Prism.DryIoc; using Prism.Ioc; using Prism.Modularity; diff --git a/XplorePlane/ViewModels/ImageProcessing/ProcessorParameterVM.cs b/XplorePlane/ViewModels/ImageProcessing/ProcessorParameterVM.cs index a5119df..7408d5a 100644 --- a/XplorePlane/ViewModels/ImageProcessing/ProcessorParameterVM.cs +++ b/XplorePlane/ViewModels/ImageProcessing/ProcessorParameterVM.cs @@ -1,4 +1,4 @@ -using Prism.Mvvm; +using Prism.Mvvm; using System; using System.Globalization; using System.Linq; diff --git a/XplorePlane/Views/ImageProcessing/ImageProcessingPanelView.xaml b/XplorePlane/Views/ImageProcessing/ImageProcessingPanelView.xaml index 355e7a0..45801da 100644 --- a/XplorePlane/Views/ImageProcessing/ImageProcessingPanelView.xaml +++ b/XplorePlane/Views/ImageProcessing/ImageProcessingPanelView.xaml @@ -1,4 +1,4 @@ -