mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
破坏性更新,移除了Core/Framework(对应的上下文类移动到了Library)
This commit is contained in:
@@ -5,10 +5,11 @@ using Serein.Library;
|
||||
using Serein.NodeFlow.Model;
|
||||
using Serein.Workbench.Avalonia.Api;
|
||||
using Serein.Workbench.Avalonia.Custom.Node.ViewModels;
|
||||
using Serein.Workbench.Avalonia.Custom.Views;
|
||||
|
||||
namespace Serein.Workbench.Avalonia.Custom.Node.Views;
|
||||
|
||||
public partial class ActionNodeView : NodeControlBase
|
||||
public partial class ActionNodeView : NodeControlBase, INodeJunction
|
||||
{
|
||||
private ActionNodeViewModel _vm;
|
||||
|
||||
@@ -20,4 +21,11 @@ public partial class ActionNodeView : NodeControlBase
|
||||
//DataContext = _vm;
|
||||
}
|
||||
|
||||
public NodeJunctionView ExecuteJunction => this.ExecuteJunctionControl;
|
||||
|
||||
public NodeJunctionView NextStepJunction => this.NextStepJunctionControl;
|
||||
|
||||
public NodeJunctionView[] ArgDataJunction => throw new System.NotImplementedException();
|
||||
|
||||
public NodeJunctionView ReturnDataJunction => throw new System.NotImplementedException();
|
||||
}
|
||||
Reference in New Issue
Block a user