ivr流程编辑器

IVREndNode.cs 700B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using HySoft.IVRFlowEditor.Propretity;
  6. using System.Windows.Forms;
  7. using HySoft.IVRFlowEditor.Model;
  8. namespace HySoft.IVRFlowEditor.IVRControlUtility
  9. {
  10. [IVRAttribute("CELL_END", Model.IVRSerializerType.节点, 2)]
  11. public class IVREndNode:IVRControlBase
  12. {
  13. public IVREndNode(string name)
  14. {
  15. this.Name = name;
  16. CtlProperty = new CtlIVREndNode(this);
  17. }
  18. //public override Control GetProperty(List<FlowNode> node, string displayName, string valueName)
  19. //{
  20. // return new CtlIVREndNode(base.ID,base.Name,base.Note);
  21. //}
  22. }
  23. }