using Serein.NodeFlow.Model; using Serein.Workbench.Node.ViewModel; using System.Runtime.CompilerServices; using System.Windows.Controls; namespace Serein.Workbench.Node.View { /// /// ActionNode.xaml 的交互逻辑 /// public partial class ActionNodeControl : NodeControlBase { public ActionNodeControl(ActionNodeControlViewModel viewModel):base(viewModel) { DataContext = viewModel; InitializeComponent(); } } }