mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
20 lines
513 B
C#
20 lines
513 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
|
|
{
|
|
public ActionNodeControl(ActionNodeControlViewModel viewModel):base(viewModel)
|
|
{
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|