MemberPaymentSuperSmallForm.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 MemberPaymentSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public MemberPaymentSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
  18. this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  19. this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
  21. this.labelEx3.ForeColor = UIBlueThemeResources.TitleTextColor;
  22. this.Shown += MemberPaymentSuperSmallForm_Shown;
  23. this.txtConfirmAmount.KeyPress += txtConfirmAmount_KeyPress;
  24. this.txtRemark.KeyPress += txtRemark_KeyPress;
  25. this.btnOK.Click += btnOK_Click;
  26. this.btnCancel.Click += btnCancel_Click;
  27. this.btnRecharge.Click += btnRecharge_Click;
  28. this.btnSet.Click += btnSet_Click;
  29. }
  30. /// <summary>
  31. /// 窗体加载事件
  32. /// </summary>
  33. /// <param name="sender"></param>
  34. /// <param name="e"></param>
  35. protected virtual void MemberPaymentSuperSmallForm_Shown(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. /// <summary>
  40. /// 金额输入控制
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. protected virtual void txtConfirmAmount_KeyPress(object sender, KeyPressEventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. /// <summary>
  49. /// 备注输入控制
  50. /// </summary>
  51. /// <param name="sender"></param>
  52. /// <param name="e"></param>
  53. protected virtual void txtRemark_KeyPress(object sender, KeyPressEventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. /// <summary>
  58. /// 确定
  59. /// </summary>
  60. /// <param name="sender"></param>
  61. /// <param name="e"></param>
  62. protected virtual void btnOK_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. /// <summary>
  67. /// 取消
  68. /// </summary>
  69. /// <param name="sender"></param>
  70. /// <param name="e"></param>
  71. protected virtual void btnCancel_Click(object sender, EventArgs e)
  72. {
  73. //throw new NotImplementedException();
  74. }
  75. /// <summary>
  76. /// 充值
  77. /// </summary>
  78. /// <param name="sender"></param>
  79. /// <param name="e"></param>
  80. protected virtual void btnRecharge_Click(object sender, EventArgs e)
  81. {
  82. //throw new NotImplementedException();
  83. }
  84. /// <summary>
  85. /// 设置
  86. /// </summary>
  87. /// <param name="sender"></param>
  88. /// <param name="e"></param>
  89. protected virtual void btnSet_Click(object sender, EventArgs e)
  90. {
  91. //throw new NotImplementedException();
  92. }
  93. }
  94. }