mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
GIT练习
This commit is contained in:
22
WorkBench/Node/View/ActionNodeControl.xaml.cs
Normal file
22
WorkBench/Node/View/ActionNodeControl.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Serein.DynamicFlow.NodeModel;
|
||||
using Serein.WorkBench.Node.ViewModel;
|
||||
|
||||
namespace Serein.WorkBench.Node.View
|
||||
{
|
||||
/// <summary>
|
||||
/// ActionNode.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class ActionNodeControl : NodeControlBase
|
||||
{
|
||||
private readonly ActionNodeControlViewModel actionNodeControlViewModel;
|
||||
public ActionNodeControl(SingleActionNode node) : base(node)
|
||||
{
|
||||
Node = node;
|
||||
actionNodeControlViewModel = new ActionNodeControlViewModel(node);
|
||||
DataContext = actionNodeControlViewModel;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user