TURBO-569:更新工程结构;将导航相机标定和校准功能迁移到XP.Camera类
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user