123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- 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
- {
- public partial class GoldCardMemberFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public GoldCardMemberFormMain()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- //this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.UcNavigationTool.LabTitle = "金卡会员";
- this.Shown += new EventHandler(GoldCardMemberFormMain_Shown);
- this.cmbQueryText.KeyDown += cmbQueryText_KeyDown;
- this.btnQuery.Click += new EventHandler(btnQuery_Click);
- this.btnOpenNewCard.Click += new EventHandler(btnOpenNewCard_Click);
- this.btnCardManage.Click += new EventHandler(btnCardManage_Click);
- this.btnPhotographerManagement.Click += btnPhotographerManagement_Click;
- this.btnSendSMS.Click += new EventHandler(btnSendSMS_Click);
- this.btnImport.Click += new EventHandler(btnImport_Click);
- this.btnExporting.Click += new EventHandler(btnExporting_Click);
- this.btnClose.Click += new EventHandler(btnClose_Click);
- this.dgvData.CellDoubleClick += dgvData_CellDoubleClick;
- this.Resize += GoldCardMemberFormMain_Resize;
- }
-
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void GoldCardMemberFormMain_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 回车查找
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbQueryText_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 查询
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnQuery_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 开新卡
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnOpenNewCard_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 会员卡管理
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCardManage_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 摄友会管理
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnPhotographerManagement_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 发短信
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSendSMS_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 导入
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnImport_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 导出
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnExporting_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 dgvData_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体大小发生变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void GoldCardMemberFormMain_Resize(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|