| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using HySoft.IVRFlowEditor.Propretity;
- using HySoft.IVRFlowEditor.Model;
- namespace HySoft.IVRFlowEditor.IVRControlUtility
- {
- /// <summary>
- /// 开始节点
- /// </summary>
- [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(List<FlowNode>bottomNode,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; }
-
-
-
- }
- }
|