IDesigner.cs
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
- using System;
- namespace wxwinter.WFDesignerSl
- {
- public interface IDesigner
- {
- void AddActivity(ActivityControl activity);
- void AddActivityPath(string pathName, string startingPoint, string targetingPoint, string condition, string describe);
- System.Collections.Generic.List<ActivityControl> GetActivityControlList();
- System.Collections.Generic.List<ActivityPath> GetActivityPathList();
- System.Collections.Generic.List<string> NameList { get; }
- double PageHeight { get; set; }
- double PageSize { get; set; }
- double PageWidth { get; set; }
- void RemoveActivity(string activityName);
- void RemoveActivityPath(string pathName);
- void SetCurrentActivity(string activityName);
- }
- }