PhotographerPrintSelectSuperSmallForm.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
  11. {
  12. public partial class PhotographerPrintSelectSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public PhotographerPrintSelectSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  21. this.Load += PhotographerPrintSelectSuperSmallForm_Load;
  22. this.btnOK.Click += btnOK_Click;
  23. this.btnCancel.Click += btnCancel_Click;
  24. this.chk1.Click += chk1_Click;
  25. this.chk2.Click += chk2_Click;
  26. }
  27. /// <summary>
  28. /// 窗体加载事件
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. protected virtual void PhotographerPrintSelectSuperSmallForm_Load(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. /// <summary>
  37. /// 确定
  38. /// </summary>
  39. /// <param name="sender"></param>
  40. /// <param name="e"></param>
  41. protected virtual void btnOK_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. /// <summary>
  46. /// 取消
  47. /// </summary>
  48. /// <param name="sender"></param>
  49. /// <param name="e"></param>
  50. protected virtual void btnCancel_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. /// <summary>
  55. /// 收款单据
  56. /// </summary>
  57. /// <param name="sender"></param>
  58. /// <param name="e"></param>
  59. protected virtual void chk1_Click(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. /// <summary>
  64. /// 返还款单据
  65. /// </summary>
  66. /// <param name="sender"></param>
  67. /// <param name="e"></param>
  68. protected virtual void chk2_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. }
  73. }