123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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;
- }
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerConferenceSuperSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerConferenceSuperSmallForm_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSet_Click(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 btnPackagesToolbox_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 礼品工具箱
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnGiftToolbox_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 移除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnRemove_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();
- }
- }
- }
|