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;
}
///
/// 窗体加载事件
///
///
///
protected virtual void MemberCardUpgradeSetSuperSmallForm_Shown(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 chk1_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 单次充值最高金额
///
///
///
protected virtual void chk2_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 累计积分
///
///
///
protected virtual void chk3_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 摄友会升级
///
///
///
protected virtual void chk4_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 累计历史积分
///
///
///
protected virtual void chkHistoricalPoints_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 当前可用积分
///
///
///
protected virtual void chkAvailablePoints_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
}
}