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 PhotographerConferenceSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public PhotographerConferenceSuperSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx1.BorderStyle = BorderStyle.FixedSingle; this.Shown += PhotographerConferenceSuperSmallForm_Shown; this.Load += PhotographerConferenceSuperSmallForm_Load; this.btnSet.Click += btnSet_Click; this.btnSave.Click += btnSave_Click; this.btnPackagesToolbox.Click += btnPackagesToolbox_Click; this.btnGiftToolbox.Click += btnGiftToolbox_Click; this.btnRemove.Click += btnRemove_Click; this.cmbMemberLevel.SelectedIndexChanged += cmbMemberLevel_SelectedIndexChanged; } /// /// 窗体加载 /// /// /// protected virtual void PhotographerConferenceSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 窗体加载 /// /// /// protected virtual void PhotographerConferenceSuperSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 设置 /// /// /// protected virtual void btnSet_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 保存 /// /// /// protected virtual void btnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 套系工具箱 /// /// /// protected virtual void btnPackagesToolbox_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 礼品工具箱 /// /// /// protected virtual void btnGiftToolbox_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 移除 /// /// /// protected virtual void btnRemove_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 会员等级索引发生改变时 /// /// /// protected virtual void cmbMemberLevel_SelectedIndexChanged(object sender, EventArgs e) { //throw new NotImplementedException(); } } }