派纳发送邮件功能
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.

63 lines
1.5 KiB

5 months ago
  1. /**************************************************************
  2. * Description:
  3. * CustPOSendMailUIAction.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 UFIDA.U9.Cust.WC.CustPOSendMailUI
  17. {
  18. public partial class CustPOSendMailUIAction
  19. {
  20. public override void OnInitAction()
  21. {
  22. base.OnInitAction();
  23. //提示:可注册你自己的方法到相应的事件中,如下.
  24. //this.CommonAction.BeforeLoad += new ActionLoadDelegate(CommonAction_BeforeLoad);
  25. }
  26. private void OnSend_Extend(object sender, UIActionEventArgs e)
  27. {
  28. //调用模版定义的默认实现方法.如需扩展,请直接在此编程.
  29. this.OnSend_DefaultImpl(sender,e);
  30. }
  31. private void OnClose_Extend(object sender, UIActionEventArgs e)
  32. {
  33. //调用模版定义的默认实现方法.如需扩展,请直接在此编程.
  34. this.OnClose_DefaultImpl(sender,e);
  35. }
  36. #region UBF 内置两数据处理Action
  37. //数据加载的扩展
  38. private void OnLoadData_Extend(object sender, UIActionEventArgs e)
  39. {
  40. this.OnLoadData_DefaultImpl(sender,e);
  41. }
  42. //数据收集的扩展
  43. private void OnDataCollect_Extend(object sender, UIActionEventArgs e)
  44. {
  45. this.OnDataCollect_DefaultImpl(sender,e);
  46. }
  47. #endregion
  48. }
  49. }