123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- 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 MemberCardUpgradeSetSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public MemberCardUpgradeSetSuperSmallForm()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
- this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
- this.Shown += MemberCardUpgradeSetSuperSmallForm_Shown;
- this.btnOK.Click += new EventHandler(btnOK_Click);
- this.btnClose.Click += btnClose_Click;
- this.chk1.Click += chk1_Click;
- this.chk2.Click += chk2_Click;
- this.chk3.Click += chk3_Click;
- this.chk4.Click += chk4_Click;
- this.chkHistoricalPoints.Click += chkHistoricalPoints_Click;
- this.chkAvailablePoints.Click += chkAvailablePoints_Click;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void MemberCardUpgradeSetSuperSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnOK_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 累计充值金额
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chk1_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 单次充值最高金额
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chk2_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 累计积分
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chk3_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 摄友会升级
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chk4_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 累计历史积分
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkHistoricalPoints_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 当前可用积分
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkAvailablePoints_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|