| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Propretity;
- using System.Windows.Forms;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- [IVRAttribute("CELL_END", Model.IVRSerializerType.节点, 2)]
- public class IVREndNode:IVRControlBase
- {
- public IVREndNode(string name)
- {
- this.Name = name;
- CtlProperty = new CtlIVREndNode(this);
- }
- //public override Control GetProperty(List<FlowNode> node, string displayName, string valueName)
- //{
- // return new CtlIVREndNode(base.ID,base.Name,base.Note);
- //}
- }
- }
|