123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- 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 PhotographerOpenCardAoumntSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public PhotographerOpenCardAoumntSetSuperSmallForm()
- {
- InitializeComponent();
- this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.Load += PhotographerOpenCardAoumntSetSuperSmallForm_Load;
- this.btnSave.Click += btnSave_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.cmbMemberLevel.SelectedIndexChanged += cmbMemberLevel_SelectedIndexChanged;
- this.txtOpenCardAmount.KeyPress += txtOpenCardAmount_KeyPress;
- this.txtPoints.KeyPress += txtPoints_KeyPress;
- this.txtRefundAmount.KeyPress += txtRefundAmount_KeyPress;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerOpenCardAoumntSetSuperSmallForm_Load(object sender, EventArgs 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 btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 等级选择事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbMemberLevel_SelectedIndexChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 开卡金输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtOpenCardAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 积分输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtPoints_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 返还金输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtRefundAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|