using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Basic { #region 定义创建类型的枚举 /// /// 可以创建的画面或设备的类型 /// public enum CreateType { /// /// 画面 /// Form, /// /// 设备 /// Device, /// /// 命令 /// Command } #endregion }