完成添加变量功能

This commit is contained in:
2025-07-03 12:55:00 +08:00
parent 6a503de26e
commit 4159e95bf3
16 changed files with 528 additions and 124 deletions

View File

@@ -9,7 +9,9 @@ public interface IDialogService
Task<bool> ShowConfrimeDialog(string title, string message,string buttonText="确认");
Task<VariableTable> ShowAddVarTableDialog(Device device);
Task<VariableTable> ShowAddVarTableDialog();
Task<VariableData> ShowAddVarDataDialog();
void ShowMessageDialog(string title, string message);
}