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.SetSmallForm
{
public partial class MyPhotographerConferenceSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
{
public MyPhotographerConferenceSmallForm()
{
InitializeComponent();
this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
this.Shown += MyPhotographerConferenceSmallForm_Shown;
this.Load += MyPhotographerConferenceSmallForm_Load;
this.btnPrintSingle.Click += btnPrintSingle_Click;
this.btnOKReturn.Click += btnOKReturn_Click;
this.btnUse.Click += btnUse_Click;
this.dgvData.MouseClick += dgvData_MouseClick;
this.dgvData2.MouseDoubleClick += dgvData2_MouseDoubleClick;
}
///
/// 窗体加载事件
///
///
///
protected virtual void MyPhotographerConferenceSmallForm_Shown(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 窗体加载事件
///
///
///
protected virtual void MyPhotographerConferenceSmallForm_Load(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 打印单据
///
///
///
protected virtual void btnPrintSingle_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 确定返还
///
///
///
protected virtual void btnOKReturn_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 使用
///
///
///
protected virtual void btnUse_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 列表双击事件
///
///
///
protected virtual void dgvData_MouseClick(object sender, MouseEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 列表双击事件
///
///
///
protected virtual void dgvData2_MouseDoubleClick(object sender, MouseEventArgs e)
{
//throw new NotImplementedException();
}
}
}