mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
26 lines
698 B
C#
26 lines
698 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.WorkBench.Node.ViewModel;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Windows.Controls;
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|