OpenBackCashViceCardSuperSmallForm.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 OpenBackCashViceCardSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public OpenBackCashViceCardSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelExA.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelExA.BorderStyle = BorderStyle.FixedSingle;
  19. this.panelExB.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.panelExB.BorderStyle = BorderStyle.FixedSingle;
  21. this.Shown += OpenBackCashViceCardSuperSmallForm_Shown;
  22. this.txtPackagesAmount.KeyPress += txtPackagesAmount_KeyPress;
  23. this.btnSelect.Click += btnSelect_Click;
  24. this.btnOK.Click += btnOK_Click;
  25. this.btnCancel.Click += btnCancel_Click;
  26. }
  27. /// <summary>
  28. /// 窗体加载事件
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. protected virtual void OpenBackCashViceCardSuperSmallForm_Shown(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 txtPackagesAmount_KeyPress(object sender, KeyPressEventArgs 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 btnSelect_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 btnOK_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 btnCancel_Click(object sender, EventArgs e)
  69. {
  70. //throw new NotImplementedException();
  71. }
  72. }
  73. }