Files
XplorePlane/XP.Hardware.Detector/XP.Hardware.Detector.csproj
T
ZHANG Zhengxuan 91aa282aef 已合并 PR 137: 累计功能点更新
1、实时图像区背景改 棋盘格;右键增加 缩放比例的选择; √
 2、SavePosition 节点属性区域现在依次是:运动参数 → 射线源(电压/电流)→ 设定参数(保存图像/手动路径) √  值的获取与记录 √
 3、十字线绘制范围的调整,改为填充整个图像预览区域 √
 4、优化登录窗体 增加登录级别的选择 √
 5、软件版本页面 分析项目依赖,移除未使用的库 √
6、直方图节点统一,使用 算子工具箱
7、cnc增加一个复位按钮操作,当插入CNC时,可以进行复位  √
8、信息显示控件 √
9、实时模式下禁止 图像预览区的图像拖动,前期已经禁止缩放,目前禁止拖动 √
10、开关闭实时,鼠标在图像上滑动显示蓝色的十字线 √

![image.png](http://cntao-ap-v83/HMQ-Solution/7ff128fd-5cc6-4feb-9529-2a03b2895662/_apis/git/repositories/e2c5485f-4369-4ed9-9fb9-d087ca4e04b6/pullRequests/137/attachments/image.png)
2026-06-30 15:00:09 +08:00

39 lines
1.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<UseWPF>true</UseWPF>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Prism.Wpf" Version="9.0.537" />
<PackageReference Include="Telerik.UI.for.Wpf.NetCore.Xaml" Version="2024.1.408" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XP.Common\XP.Common.csproj" />
</ItemGroup>
<ItemGroup>
<!-- 确保 xisl.dll 复制到输出目录 | Ensure xisl.dll is copied to output directory -->
<None Include="bin\Debug\net8.0-windows7.0\xisl.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<!-- 确保 FpdSys.dll 复制到输出目录(IRay 平板探测器 SDK| Ensure FpdSys.dll is copied to output directory (IRay FPD SDK) -->
<None Include="bin\Debug\net8.0-windows7.0\FpdSys.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>