📄 impscanceleventargs.cs
字号:
namespace Imps.Client.Core
{
using System;
using System.Collections.Generic;
public class ImpsCancelEventArgs : EventArgs
{
private bool _cancel = false;
private List<ImpsCancelOperationDelegate> _cancelOperations = new List<ImpsCancelOperationDelegate>();
private List<string> _cancelQuestions = new List<string>();
private List<string> _cancelReasons = new List<string>();
public void AddCancelQuestion(string question)
{
this._cancelQuestions.Add(question);
}
public void AddCancelQuestion(string question, ImpsCancelOperationDelegate operationCallBack)
{
this._cancelQuestions.Add(question);
this._cancelOperations.Add(operationCallBack);
}
public void AddCancelReason(string reason)
{
this._cancelReasons.Add(reason);
}
public bool Cancel
{
get
{
if (!this._cancel && (this.CancelQuestions.get_Count() <= 0))
{
return (this.CancelReasons.get_Count() > 0);
}
return true;
}
set
{
if (!value)
{
throw new ArgumentException();
}
this._cancel = value;
}
}
public ICollection<ImpsCancelOperationDelegate> CancelOperations
{
get
{
return this._cancelOperations;
}
}
public ICollection<string> CancelQuestions
{
get
{
return this._cancelQuestions;
}
}
public ICollection<string> CancelReasons
{
get
{
return this._cancelReasons;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -