SheetSubmitEventHandler.cs
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. namespace OThinker.H3.WorkSheet
  3. {
  4. /// <summary>
  5. /// PageSubmitEventHandler 的摘要说明。
  6. /// </summary>
  7. public class SheetSubmitEventArgs
  8. {
  9.         public SheetSubmitEventArgs(bool Finish, string DestActivityName, string Description)
  10. {
  11.             this._Finish = Finish;
  12.             this._DestActivityName = DestActivityName;
  13.             this._Description = Description;
  14. }
  15. private bool _Finish = false;
  16.         public bool Finish
  17.         {
  18.             get{
  19.                 return this._Finish;
  20.             }
  21.         }
  22.         
  23.         private string _DestActivityName;
  24.         public string DestActivityName
  25.         {
  26.             get{
  27.                 return this._DestActivityName;
  28.             }
  29.         }
  30.         private string _Description;
  31.         public string Description
  32.         {
  33.             get
  34.             {
  35.                 return this._Description;
  36.             }
  37.         }
  38. }
  39. public delegate void SheetSubmitEventHandler(object Sender, SheetSubmitEventArgs e);
  40. }