TURBO-569:更新工程结构;将导航相机标定和校准功能迁移到XP.Camera类

This commit is contained in:
李伟
2026-04-20 16:09:17 +08:00
parent e166eca3d7
commit 9218384e3f
24 changed files with 2429 additions and 124 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace XP.Camera.Calibration;
/// <summary>
/// 对话框服务接口,用于标定模块的文件选择和消息提示。
/// </summary>
public interface ICalibrationDialogService
{
void ShowMessage(string message, string title);
void ShowError(string message, string title);
void ShowInfo(string message, string title);
bool ShowConfirm(string message, string title);
string? ShowOpenFileDialog(string filter);
string[]? ShowOpenMultipleFilesDialog(string filter);
string? ShowSaveFileDialog(string filter, string? defaultFileName = null);
}