增加流程运行特性:支持异步节点

This commit is contained in:
fengjiayi
2024-10-07 22:52:10 +08:00
parent 878b1c5893
commit 9529b9e19d
13 changed files with 190 additions and 96 deletions

33
Net462DllTest/Main.cs Normal file
View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Net462DllTest.Properties
{
/*
理想的项目架构:
FlowEnv - LoginControl
LoginControl
↙ ↘
(View-Interaction) (Node-Interaction)
↓ ↕
View ←→ ViewModel ←→ Trigger ← SingleEnum
Model
· DataChanged → Trigger
视图驱动触发器,触发器驱动数据。
数据驱动触发器,触发器驱动视图。
所以,这个结构≈事件驱动。
动态的配置事件触发的原因、过程与结果。
*/
}