PhotographerPaymentSuperSmallForm.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
  10. {
  11. public partial class PhotographerPaymentSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public PhotographerPaymentSuperSmallForm()
  14. {
  15. InitializeComponent();
  16. this.Load += PhotographerPaymentSuperSmallForm_Load;
  17. this.btnSet.Click += btnSet_Click;
  18. this.btnPaymentPrintSingle.Click += btnPaymentPrintSingle_Click;
  19. this.btnPaymentOnly.Click += btnPaymentOnly_Click;
  20. this.btnCancel.Click += btnCancel_Click;
  21. }
  22. /// <summary>
  23. /// 窗体加载事件
  24. /// </summary>
  25. /// <param name="sender"></param>
  26. /// <param name="e"></param>
  27. protected virtual void PhotographerPaymentSuperSmallForm_Load(object sender, EventArgs e)
  28. {
  29. //throw new NotImplementedException();
  30. }
  31. /// <summary>
  32. /// 设置
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. protected virtual void btnSet_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. /// <summary>
  41. /// 收款并打印单据
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected virtual void btnPaymentPrintSingle_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. /// <summary>
  50. /// 只收款
  51. /// </summary>
  52. /// <param name="sender"></param>
  53. /// <param name="e"></param>
  54. protected virtual void btnPaymentOnly_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. /// <summary>
  59. /// 取消
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. protected virtual void btnCancel_Click(object sender, EventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. }
  68. }