简单使用WF工作流示例:
using System;
using System.Linq;
using System.Activities;
using System.Activities.Statements;
namespace WorkflowDemo
{
class Program
{
static void Main(
string[] args)
{
//活动:树状的
Activity workflow1 =
new Workflow1();
WorkflowInvoker.Invoke(workflow1);
Console.ReadKey();
}
}
}
转载于:https://www.cnblogs.com/zoro-zero/p/4274994.html
相关资源:JAVA上百实例源码以及开源项目
转载请注明原文地址: https://mac.8miu.com/read-63406.html