using System; using System.Collections.Generic; using System.Linq; using System.Text; using HySoft.IVRFlowEditor.Propretity; using HySoft.IVRFlowEditor.Model; namespace HySoft.IVRFlowEditor.IVRControlUtility { /// /// 开始节点 /// [IVRAttribute("CELL_START", Model.IVRSerializerType.节点,1)] public class IVRStartNode : IVRControlBase { public IVRStartNode(string name) { this.Name = name; CtlProperty = new CtlIVRStartNode(this); CtlProperty.Cursor = System.Windows.Forms.Cursors.SizeAll; //CtlProperty.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; // CtlProperty.Size = _size; CtlProperty.Tag = this; } //public CtlIVRStartNode GetProperty(ListbottomNode,string displayName,string valueName) //{ // CtlIVRStartNode=new CtlIVRStartNode(this, bottomNode, displayName, valueName); // return CtlIVRStartNode; //} [IVRAttribute("Next", Model.IVRSerializerType.元素,2, IsPosPoint = true)] public IVRControlBase Next { get; set; } } }