Files
serein-flow/WorkBench/Node/ViewModel/ActionNodeControlViewModel.cs

32 lines
944 B
C#
Raw Normal View History

2024-08-06 15:41:14 +08:00
using Serein.Flow;
using Serein.Flow.NodeModel;
2024-08-05 10:11:58 +08:00
using Serein.WorkBench.Node.View;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Serein.WorkBench.Node.ViewModel
{
public class ActionNodeControlViewModel : NodeControlViewModel
{
private readonly SingleActionNode node;
public ActionNodeControlViewModel(SingleActionNode node)
{
this.node = node;
MethodDetails = node.MethodDetails;
//if (node.MethodDetails.ExplicitDatas.Length == 0)
//{
// // 没有显式项
// IsExistExplicitData = false;
// ExplicitDatas = [];
//}
//else
//{
// explicitDatas = node.MethodDetails.ExplicitDatas;
// //ExplicitDatas = node.MethodDetails.ExplicitDatas;
// IsExistExplicitData = true;
//}
}
}
}