mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
18 lines
449 B
C#
18 lines
449 B
C#
using Serein.NodeFlow.Model;
|
|
using Serein.WorkBench.Node.ViewModel;
|
|
|
|
namespace Serein.WorkBench.Node.View
|
|
{
|
|
/// <summary>
|
|
/// StateNode.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class FlipflopNodeControl : NodeControlBase
|
|
{
|
|
public FlipflopNodeControl(FlipflopNodeControlViewModel viewModel) : base(viewModel)
|
|
{
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|