mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +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();
|
|
}
|
|
}
|
|
}
|