FlowChart.cs
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using System.Xml;
  7. namespace wxwinter.WFDesignerSl
  8. {
  9.     public class FlowChart
  10.     {
  11.         public List<Element> ElementList = new List<Element>();
  12.         public List<ElementRelation> ElementRelationList = new List<ElementRelation>();
  13.       }
  14.     public class Element
  15.     {
  16.         public string Name
  17.         { set; get; }
  18.         public string 类型
  19.         { set; get; }
  20.         public string 说明
  21.         { set; get; }
  22.        
  23.         public Double X坐标
  24.         { set; get; }
  25.         public Double Y坐标
  26.         { set; get; }
  27.         public object 数据
  28.         { set; get; }
  29.     }
  30.     public class ElementRelation
  31.     {
  32.         public string Name
  33.         { set; get; }
  34.         public string 起点
  35.         { set; get; }
  36.         public string 目标
  37.         { set; get; }
  38.         public string 路由
  39.         { set; get; }
  40.         public string 说明
  41.         { set; get; }
  42.     }
  43. }