using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataEntity.Event { /// /// 事件参数 /// public class EventExArgs : EventArgs { /// /// 事件枚举 /// public enum EventEnum { /// /// 显示设置报错Dialog /// ShowDeviceErrorDialg = 0, } private EventEnum _nType; /// /// 事件枚举类型 /// public EventEnum nType { get { return _nType; } } public EventExArgs(EventEnum type) { _nType = type; } } }