mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-02 23:26:35 +08:00
block demo 已经完成到第三个了
This commit is contained in:
@@ -620,9 +620,17 @@ namespace AIStudio.Wpf.Mind.ViewModels
|
||||
});
|
||||
}
|
||||
|
||||
public override void ExecuteNextCommand(object parameter)
|
||||
public override bool Next()
|
||||
{
|
||||
ExecuteAddPearCommand(parameter);
|
||||
if (SelectedItems.Count > 0)
|
||||
{
|
||||
ExecuteAddPearCommand(null);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private void ExecuteMoveBackCommand(object parameter)
|
||||
|
||||
Reference in New Issue
Block a user