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.MainBusiness.StatisticalInquiry { public partial class FinanceDayAuditTipsSetSmallForm : LYFZ.Software.UI.StatisticalInquiry.FinanceDayAuditTipsSetSmallForm { public FinanceDayAuditTipsSetSmallForm() { this.Load += FinanceDayAuditTipsSetSmallForm_Load; this.btnAuditBy.Click += btnAuditBy_Click; this.btnAuditNotBy.Click += btnAuditNotBy_Click; this.btnCancel.Click += btnCancel_Click; } /// /// 窗体加载事件 /// /// /// void FinanceDayAuditTipsSetSmallForm_Load(object sender, EventArgs e) { } /// /// 审核通过 /// /// /// void btnAuditBy_Click(object sender, EventArgs e) { this.DialogResult = System.Windows.Forms.DialogResult.Yes; } /// /// 审核不通过 /// /// /// void btnAuditNotBy_Click(object sender, EventArgs e) { this.DialogResult = System.Windows.Forms.DialogResult.No; } /// /// 取消 /// /// /// void btnCancel_Click(object sender, EventArgs e) { this.DialogResult = System.Windows.Forms.DialogResult.Cancel; } } }