You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB
C#

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
{
/// <summary>
/// 气力输送控件基类带有流动方向的
/// </summary>
public class IntakeControl : BaseIntakeControl
{
private String _linkControl;
/// <summary>
/// 流动输出
/// </summary>
[Editor(typeof(LinkControlEditor), typeof(UITypeEditor))]
public String LinkControl
{
get { return _linkControl; }
set { _linkControl = value; }
}
private String _linkControlB;
/// <summary>
/// 流动输出侧
/// </summary>
[Editor(typeof(LinkControlEditor), typeof(UITypeEditor))]
public String LinkControlB
{
get { return _linkControlB; }
set { _linkControlB = value; }
}
/// <summary>
/// 默认构造方法
/// </summary>
public IntakeControl()
{
this.DoubleBuffered = true; //设置双缓存
}
}
}