From f76f09da947ec79235aecef351d6921ec706dba0 Mon Sep 17 00:00:00 2001
From: fengjiayi <12821976+ning_xi@user.noreply.gitee.com>
Date: Sun, 13 Oct 2024 19:36:45 +0800
Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=96=B0=E7=A1=AE=E8=AE=A4=E5=BC=80?=
=?UTF-8?q?=E5=8F=91=E6=96=B9=E5=90=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
Library/Api/IFlowEnvironment.cs | 5 +-
Library/Entity/ExplicitData.cs | 69 ----------
Library/Entity/MethodDetails.cs | 62 ++++++++-
Library/Entity/ParameterDetails.cs | 116 +++++++++++++++++
Library/Entity/SereinProjectData.cs | 1 -
NodeFlow/Base/NodeModelBaseFunc.cs | 10 +-
NodeFlow/FlowEnvironment.cs | 47 +++++--
NodeFlow/Model/SingleActionNode.cs | 4 +-
NodeFlow/Model/SingleFlipflopNode.cs | 4 +-
NodeFlow/Tool/NodeMethodDetailsHelper.cs | 16 +--
README.md | 8 +-
.../FlowRemoteManagement.cs | 121 ++++++++----------
.../Serein.FlowRemoteManagement.csproj | 2 +-
Serein.FlowStartTool/Program.cs | 78 ++++++-----
.../Serein.FlowStartTool.csproj | 10 ++
WorkBench/App.xaml.cs | 5 +-
WorkBench/MainWindow.xaml.cs | 3 -
WorkBench/Themes/MethodDetailsControl.xaml | 8 +-
18 files changed, 358 insertions(+), 211 deletions(-)
delete mode 100644 Library/Entity/ExplicitData.cs
create mode 100644 Library/Entity/ParameterDetails.cs
diff --git a/Library/Api/IFlowEnvironment.cs b/Library/Api/IFlowEnvironment.cs
index 2b0ae72..9b4b5e0 100644
--- a/Library/Api/IFlowEnvironment.cs
+++ b/Library/Api/IFlowEnvironment.cs
@@ -390,7 +390,10 @@ namespace Serein.Library.Api
///
/// 是否全局中断
///
- bool IsGlobalInterrupt { get; }
+ bool IsGlobalInterrupt { get; }
+
+
+
#endregion
#region 事件
diff --git a/Library/Entity/ExplicitData.cs b/Library/Entity/ExplicitData.cs
deleted file mode 100644
index ad486c3..0000000
--- a/Library/Entity/ExplicitData.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace Serein.Library.Entity
-{
-
- ///
- /// 节点入参参数信息
- ///
- public class ExplicitData
- {
- ///
- /// 参数索引
- ///
- public int Index { get; set; }
- ///
- /// 是否为显式参数(固定值/表达式)
- ///
- public bool IsExplicitData { get; set; }
- ///
- /// 转换器 IEnumConvertor<,>
- ///
- public Func