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; } /// /// 窗体加载事件 /// /// /// protected virtual void PhotographerConferenceStatisticSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 窗体加载事件 /// /// /// protected virtual void PhotographerConferenceStatisticSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 查询 /// /// /// protected virtual void btnQuery_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 条件查询 /// /// /// protected virtual void btnConditionQuery_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 发送短信 /// /// /// protected virtual void btnSendSMS_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 关闭 /// /// /// protected virtual void btnColse_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 选项卡选择 /// /// /// protected virtual void tabPanel_SelectedIndexChanged(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 行添加时发生改变 /// /// /// protected virtual void dgvData1_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e) { //throw new NotImplementedException(); } /// /// 全部双击事件 /// /// /// protected virtual void dgvData1_MouseDoubleClick(object sender, MouseEventArgs e) { //throw new NotImplementedException(); } /// /// 已达未返双击事件 /// /// /// protected virtual void dgvData3_MouseDoubleClick(object sender, MouseEventArgs e) { //throw new NotImplementedException(); } /// /// 查询框回车键 /// /// /// protected virtual void txtQuery_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); } } }