123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- 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;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void MyPhotographerConferenceSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void MyPhotographerConferenceSmallForm_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 打印单据
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnPrintSingle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 确定返还
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnOKReturn_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 使用
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnUse_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_MouseClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData2_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|