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

SilverLight

开发平台:

C#

  1. using System.Windows.Shapes;
  2. using System.Windows.Controls;
  3. namespace wxwinter.WFDesignerSl
  4. {
  5.     public class ActivityPath
  6.     {
  7.         public string Name
  8.         {
  9.             get { return 连线.Name; }
  10.         }
  11.         public string 起点
  12.         { set; get; }
  13.         public string 目标
  14.         { set; get; }
  15.         public string 说明
  16.         { set; get; }
  17.         public string 路由
  18.         { set; get; }
  19.         public Path 连线
  20.         { set; get; }
  21.         public TextBlock 标签
  22.         { set; get; }
  23.     }
  24. }