2024-08-06 16:09:46 +08:00
|
|
|
|
using Serein.NodeFlow.Model;
|
2024-08-05 10:11:58 +08:00
|
|
|
|
using Serein.WorkBench.Node.ViewModel;
|
2024-08-07 21:17:19 +08:00
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
using System.Windows.Controls;
|
2024-08-05 10:11:58 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Serein.WorkBench.Node.View
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// ActionNode.xaml 的交互逻辑
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class ActionNodeControl : NodeControlBase
|
|
|
|
|
|
{
|
2024-09-12 20:32:54 +08:00
|
|
|
|
public ActionNodeControl(ActionNodeControlViewModel viewModel):base(viewModel)
|
2024-08-05 10:11:58 +08:00
|
|
|
|
{
|
2024-09-12 20:32:54 +08:00
|
|
|
|
DataContext = viewModel;
|
2024-08-05 10:11:58 +08:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|