⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reporterrorevent.cs

📁 怎样的图象处理的
💻 CS
字号:
//===========================================================================
// Smarclient FPMS Demo Project a sample project for SmartClient technology.
// Smarclient FPMS Demo is designed and implemented bases Microsoft Application Block tech.
// Author: SFPMS Team, Date 2004-11
// Vision 1.0
// Revison History
//=============================================================================
using System;

namespace JSW.FPMS.Xiang.ShiJian
{
	/// <summary>
	/// 事件托管函数形式
	/// </summary>
	public delegate void ReportErrorEventHandler(object sender, 
	ReportErrorEventArgs e);
	
	/// <summary>
	/// 事件参数
	/// </summary>
	public class ReportErrorEventArgs : EventArgs
	{
		private string reason;
		public string FailureReason
		{
			get{return reason;}
			set{reason = value;}
		}
		public ReportErrorEventArgs()
		{
			
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -