MemberCardRechargeDonateSetSuperSmallForm.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 MemberCardRechargeDonateSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public MemberCardRechargeDonateSetSuperSmallForm()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  18. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
  20. this.Shown += MemberCardRechargeDonateSetSuperSmallForm_Shown;
  21. this.txtDonateAmount.KeyPress += txtDonateAmount_KeyPress;
  22. this.txtNeedAmount.KeyPress += txtNeedAmount_KeyPress;
  23. this.txtNeedAmountEnd.KeyPress += txtNeedAmountEnd_KeyPress;
  24. this.txtDiscount.KeyPress += txtDiscount_KeyPress;
  25. this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
  26. this.btnSave.Click += btnSave_Click;
  27. this.btnCreate.Click += btnCreate_Click;
  28. this.btnDelete.Click += btnDelete_Click;
  29. this.FormClosing += MemberCardRechargeDonateSetSuperSmallForm_FormClosing;
  30. }
  31. /// <summary>
  32. /// 窗体加载事件
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. protected virtual void MemberCardRechargeDonateSetSuperSmallForm_Shown(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 txtDonateAmount_KeyPress(object sender, KeyPressEventArgs 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 txtNeedAmount_KeyPress(object sender, KeyPressEventArgs 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 txtNeedAmountEnd_KeyPress(object sender, KeyPressEventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. /// <summary>
  68. /// 折扣限制输入
  69. /// </summary>
  70. /// <param name="sender"></param>
  71. /// <param name="e"></param>
  72. protected virtual void txtDiscount_KeyPress(object sender, KeyPressEventArgs e)
  73. {
  74. //throw new NotImplementedException();
  75. }
  76. /// <summary>
  77. /// 数据列表双击事件
  78. /// </summary>
  79. /// <param name="sender"></param>
  80. /// <param name="e"></param>
  81. protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  82. {
  83. //throw new NotImplementedException();
  84. }
  85. /// <summary>
  86. /// 保存
  87. /// </summary>
  88. /// <param name="sender"></param>
  89. /// <param name="e"></param>
  90. protected virtual void btnSave_Click(object sender, EventArgs e)
  91. {
  92. //throw new NotImplementedException();
  93. }
  94. /// <summary>
  95. /// 新建
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. protected virtual void btnCreate_Click(object sender, EventArgs e)
  100. {
  101. //throw new NotImplementedException();
  102. }
  103. /// <summary>
  104. /// 删除
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. protected virtual void btnDelete_Click(object sender, EventArgs e)
  109. {
  110. //throw new NotImplementedException();
  111. }
  112. /// <summary>
  113. /// 关闭
  114. /// </summary>
  115. /// <param name="sender"></param>
  116. /// <param name="e"></param>
  117. protected virtual void MemberCardRechargeDonateSetSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
  118. {
  119. //throw new NotImplementedException();
  120. }
  121. }
  122. }