This commit is contained in:
kwai
2023-07-20 19:12:43 +08:00
parent a862f94c50
commit 661b235f57
2 changed files with 29 additions and 0 deletions

View File

@@ -413,6 +413,23 @@ namespace AIStudio.Wpf.DiagramDesigner
{
}
public virtual object GetResult()
{
if (FirstContainer != null)
{
return FirstContainer.GetResult();
}
else if (SecondContainer != null)
{
return SecondContainer.GetResult();
}
else if (ThirdContainer != null)
{
return ThirdContainer.GetResult();
}
return null;
}
#endregion
}