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();
        }
    }
}