namespace XP.Camera.Calibration; /// /// 对话框服务接口,用于标定模块的文件选择和消息提示。 /// 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); }