This commit is contained in:
艾竹
2023-08-03 23:01:33 +08:00
parent 5ee23157e4
commit 25cd232579
3 changed files with 58 additions and 5 deletions

View File

@@ -423,9 +423,14 @@ namespace AIStudio.Wpf.DiagramDesigner
}
#region
protected override async void ExecuteEditCommand(object param)
{
await (this.GetFirst() ?? this).Execute();
}
public async Task Execute()
{
await BeforeExecute();
await BeforeExecute();
await Executing();
await AfterExecute();
}