using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.Reflection; using System.IO; using Mesnac.Controls.Intake.Base; using System.Drawing.Design; using System.ComponentModel; namespace Mesnac.Controls.Intake { /// /// 气力输送控件基类带有流动方向的 /// public class IntakeControl : BaseIntakeControl { private String _linkControl; /// /// 流动输出 /// [Editor(typeof(LinkControlEditor), typeof(UITypeEditor))] public String LinkControl { get { return _linkControl; } set { _linkControl = value; } } private String _linkControlB; /// /// 流动输出侧 /// [Editor(typeof(LinkControlEditor), typeof(UITypeEditor))] public String LinkControlB { get { return _linkControlB; } set { _linkControlB = value; } } /// /// 默认构造方法 /// public IntakeControl() { this.DoubleBuffered = true; //设置双缓存 } } }