派纳发送邮件功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

9 months ago
  1. /**************************************************************
  2. * Description:
  3. * CustPrintReferenceRefAction.cs
  4. * Product: U9
  5. * Co. : UFSoft Group
  6. * Author : Auto Generated
  7. * version: 1.0
  8. **************************************************************/
  9. using System;
  10. using System.Collections;
  11. using System.Collections.Generic;
  12. using System.Text;
  13. using UFSoft.UBF.Util.Log;
  14. using UFSoft.UBF.UI.MD.Runtime;
  15. using UFSoft.UBF.UI.ActionProcess;
  16. namespace CustPrintReferenceRef
  17. {
  18. public partial class CustPrintReferenceRefAction
  19. {
  20. public override void OnInitAction()
  21. {
  22. base.OnInitAction();
  23. //提示:可注册你自己的方法到相应的事件中,如下.
  24. //this.CommonAction.BeforeLoad += new ActionLoadDelegate(CommonAction_BeforeLoad);
  25. }
  26. #region UBF 内置两数据处理Action
  27. //数据加载的扩展
  28. private void OnLoadData_Extend(object sender, UIActionEventArgs e)
  29. {
  30. this.OnLoadData_DefaultImpl(sender,e);
  31. }
  32. //数据收集的扩展
  33. private void OnDataCollect_Extend(object sender, UIActionEventArgs e)
  34. {
  35. this.OnDataCollect_DefaultImpl(sender,e);
  36. }
  37. #endregion
  38. }
  39. }