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.SuperSmallForm { public partial class PhotographerPaymentSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public PhotographerPaymentSuperSmallForm() { InitializeComponent(); this.Load += PhotographerPaymentSuperSmallForm_Load; this.btnSet.Click += btnSet_Click; this.btnPaymentPrintSingle.Click += btnPaymentPrintSingle_Click; this.btnPaymentOnly.Click += btnPaymentOnly_Click; this.btnCancel.Click += btnCancel_Click; } /// /// 窗体加载事件 /// /// /// protected virtual void PhotographerPaymentSuperSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 设置 /// /// /// protected virtual void btnSet_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 收款并打印单据 /// /// /// protected virtual void btnPaymentPrintSingle_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 只收款 /// /// /// protected virtual void btnPaymentOnly_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 取消 /// /// /// protected virtual void btnCancel_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } } }