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 PointsSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public PointsSetSuperSmallForm() { InitializeComponent(); this.labelEx14.ForeColor = UIBlueThemeResources.TitleTextColor; this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor; this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx2.BorderStyle = BorderStyle.FixedSingle; this.Shown += PointsSetSuperSmallForm_Shown; this.Load += PointsSetSuperSmallForm_Load; this.btnOK.Click += new EventHandler(btnOK_Click); this.btnClose.Click += btnClose_Click; this.btnDelete.Click += btnDelete_Click; this.btnAddDate.Click += btnAddDate_Click; this.btnTest.Click += btnTest_Click; this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick; this.txtAgoPeriod_Points.KeyPress += txtAgoPeriod_Points_KeyPress; this.txtAgoPeriod_RMB.KeyPress += txtAgoPeriod_RMB_KeyPress; this.txtBirthday_Day.KeyPress += txtBirthday_Day_KeyPress; this.txtBirthday_Month.KeyPress += txtBirthday_Month_KeyPress; this.txtDianqing_Day.KeyPress += txtDianqing_Day_KeyPress; this.txtDianqing_Month.KeyPress += txtDianqing_Month_KeyPress; this.txtLatePeriod_Points.KeyPress += txtLatePeriod_Points_KeyPress; this.txtLatePeriod_RMB.KeyPress += txtLatePeriod_RMB_KeyPress; this.txtPointsToRMB_Points.KeyPress += txtPointsToRMB_Points_KeyPress; this.txtPointsToRMB_RMB.KeyPress += txtPointsToRMB_RMB_KeyPress; this.txtReferral_Points.KeyPress += txtReferral_Points_KeyPress; this.txtReferral_RMB.KeyPress += txtReferral_RMB_KeyPress; this.txtWeddingAnniversary_Day.KeyPress += txtWeddingAnniversary_Day_KeyPress; this.txtWeddingAnniversary_Month.KeyPress += txtWeddingAnniversary_Month_KeyPress; } /// /// 窗体加载事件 /// /// /// protected virtual void PointsSetSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 窗体加载事件 /// /// /// protected virtual void PointsSetSuperSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 确定 /// /// /// protected virtual void btnOK_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 关闭 /// /// /// protected virtual void btnClose_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 删除特定日期 /// /// /// protected virtual void btnDelete_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 添加特定日期 /// /// /// protected virtual void btnAddDate_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 测试 /// /// /// protected virtual void btnTest_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 列表双击事件 /// /// /// protected virtual void dgvData_MouseDoubleClick(object sender, MouseEventArgs e) { //throw new NotImplementedException(); } /// /// 前期消费_积分限制输入 /// /// /// protected virtual void txtAgoPeriod_Points_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 前期消费_人民币限制输入 /// /// /// protected virtual void txtAgoPeriod_RMB_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 生日_当天限制输入 /// /// /// protected virtual void txtBirthday_Day_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 生日_当月限制输入 /// /// /// protected virtual void txtBirthday_Month_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 店庆_当天限制输入 /// /// /// protected virtual void txtDianqing_Day_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 店庆_当月限制输入 /// /// /// protected virtual void txtDianqing_Month_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 后期消费_积分限制输入 /// /// /// protected virtual void txtLatePeriod_Points_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 后期消费_人民币限制输入 /// /// /// protected virtual void txtLatePeriod_RMB_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 积分换人民币_积分限制输入 /// /// /// protected virtual void txtPointsToRMB_Points_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 积分换人民币_人民币限制输入 /// /// /// protected virtual void txtPointsToRMB_RMB_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 转介绍_积分限制输入 /// /// /// protected virtual void txtReferral_Points_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 转介绍_人民币限制输入 /// /// /// protected virtual void txtReferral_RMB_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 结婚纪念日当天限制输入 /// /// /// protected virtual void txtWeddingAnniversary_Day_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 结婚纪念日当月限制输入 /// /// /// protected virtual void txtWeddingAnniversary_Month_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } } }