Ai
8 Star 7 Fork 6

Gitee 极速下载/V5_DataCollection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/lsamu/V5_DataCollection
克隆/下载
MainEvents.cs 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
lauxinyi 提交于 2017-12-06 10:40 +08:00 . master
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace V5_DataPublish {
/// <summary>
/// 系统事件
/// </summary>
public class MainEvents {
/// <summary>
/// 委托操作类型
/// </summary>
public enum OutPutWindowType {
Option,
Collecton,
Publish
}
/// <summary>
/// 输入出委托参数
/// </summary>
public class OutPutWindowEventArgs : EventArgs {
private string _Message = string.Empty;
private OutPutWindowType _OutPutWindowType;
private object oData;
#region Model
/// <summary>
/// 信息
/// </summary>
public string Message {
get { return _Message; }
set {
if (!string.IsNullOrEmpty(value))
_Message = "【" + DateTime.Now + "】 " + value;
}
}
/// <summary>
/// 委托类型
/// </summary>
public OutPutWindowType OutPutWindowType {
get { return _OutPutWindowType; }
set { _OutPutWindowType = value; }
}
/// <summary>
/// 返回数据
/// </summary>
public object OData {
get { return oData; }
set { oData = value; }
}
#endregion
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/mirrors/V5_DataCollection.git
git@gitee.com:mirrors/V5_DataCollection.git
mirrors
V5_DataCollection
V5_DataCollection
master

搜索帮助