using System; namespace Dongke.WinForm.Controls { /// /// 异步处理结束事件参数 /// public class AsyncEndEventArgs : EventArgs { /// /// 处理结果 /// public object Result { get; set; } /// /// 异步处理状态 /// public bool AsyncResult { get; set; } /// /// 异步处理结束事件参数 /// public AsyncEndEventArgs(bool asyncResult, object result) : base() { this.AsyncResult = asyncResult; this.Result = result; } } }