123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- 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 PhotographerConferenceStatisticSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public PhotographerConferenceStatisticSmallForm()
- {
- 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 += PhotographerConferenceStatisticSmallForm_Shown;
- this.Load += PhotographerConferenceStatisticSmallForm_Load;
- this.btnQuery.Click += btnQuery_Click;
- this.btnConditionQuery.Click += btnConditionQuery_Click;
- this.btnSendSMS.Click += btnSendSMS_Click;
- this.btnColse.Click += btnColse_Click;
- this.tabPanel.SelectedIndexChanged += tabPanel_SelectedIndexChanged;
- this.dgvData1.RowsAdded += dgvData1_RowsAdded;
- this.dgvData1.MouseDoubleClick += dgvData1_MouseDoubleClick;
- this.dgvData3.MouseDoubleClick += dgvData3_MouseDoubleClick;
- this.txtQuery.KeyDown += txtQuery_KeyDown;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerConferenceStatisticSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerConferenceStatisticSmallForm_Load(object sender, EventArgs 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 btnConditionQuery_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 btnColse_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 选项卡选择
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void tabPanel_SelectedIndexChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 行添加时发生改变
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 全部双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData1_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 已达未返双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData3_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 查询框回车键
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtQuery_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|