[WF4.0]工作流设计器Rehosting(二)

简介:

新建一个WPf应用程序项目,

Window1.xaml

<Window x:Class="WF4Designer.Window1"

       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

       Title="Window1" Height="300" Width="300">

    <Grid x:Name="gridview">

       

    </Grid>

</Window>

 

Window1.xaml.cs

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Data;

using System.Windows.Documents;

using System.Windows.Input;

using System.Windows.Media;

using System.Windows.Media.Imaging;

using System.Windows.Navigation;

using System.Windows.Shapes;

using System.Activities.Design;

using System.Activities.Statements;

 

namespace WF4Designer

{

    ///<summary>

    /// Interaction logic for Window1.xaml

    ///</summary>

    public partial class Window1 : Window

    {

        public Window1()

        {

            InitializeComponent();

            AddDesigner();

        }

 

        private void AddDesigner()

        {

            var wd = new WorkflowDesigner();

            wd.Load(new Flowchart());

            gridview.Children.Add(wd.View);

        }

   }

}

 

演示界面截图:

 

 

 

转自:http://hi.baidu.com/5i24/blog/item/7aefa544f323718bb2b7dc37.html

现在还不能进行设计,还没有添加工具箱和PropertyGrid视图。






本文转自麒麟博客园博客,原文链接:http://www.cnblogs.com/zhuqil/archive/2009/07/08/1519456.html,如需转载请自行联系原作者

相关文章
|
SQL 存储 缓存
BPMN工作流的基本概念!详解工作流框架Activiti
本文介绍了工作流的基本概念,对工作流中的相关术语,例如工作流引擎,BPM,BPMN以及流对象进行说明。着重介绍了当下非常流行的工作流框架Activiti,重点介绍了工作流框架Activiti的服务结构,工作流组件,流程虚拟机PVM以及工作流框架的架构和使用特点。通过这篇文章,可以对工作流有一个基本的认识,为后续工作流框架Activiti的学习打下坚实的基础。
1040 0
BPMN工作流的基本概念!详解工作流框架Activiti