123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using LYFZ.ComponentLibrary;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.MembershipManage.SuperSmallForm
- {
- public partial class MemberCardRechargeDonateSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public MemberCardRechargeDonateSetSuperSmallForm()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- this.Shown += MemberCardRechargeDonateSetSuperSmallForm_Shown;
- this.txtDonateAmount.KeyPress += txtDonateAmount_KeyPress;
- this.txtNeedAmount.KeyPress += txtNeedAmount_KeyPress;
- this.txtNeedAmountEnd.KeyPress += txtNeedAmountEnd_KeyPress;
- this.txtDiscount.KeyPress += txtDiscount_KeyPress;
- this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
- this.btnSave.Click += btnSave_Click;
- this.btnCreate.Click += btnCreate_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.FormClosing += MemberCardRechargeDonateSetSuperSmallForm_FormClosing;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void MemberCardRechargeDonateSetSuperSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 赠送金额限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtDonateAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 所需金额限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtNeedAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 所需金额结束限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtNeedAmountEnd_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 折扣限制输入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtDiscount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 数据列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 新建
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCreate_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void MemberCardRechargeDonateSetSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|