using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm { public class frmExprortSelect : LYFZ.Software.UI.FinancialManagement.frmExprortSelect { public int bcheckType = 0; public frmExprortSelect() { this.btn_Ok.Click += Btn_Ok_Click; this.btn_Cancel.Click += Btn_Cancel_Click; } private void Btn_Cancel_Click(object sender, EventArgs e) { this.Close(); DialogResult = System.Windows.Forms.DialogResult.Cancel; } private void Btn_Ok_Click(object sender, EventArgs e) { if(rdo_All.Checked) { bcheckType = 2; } else if(rdo_ExportSelect.Checked) { bcheckType = 1; } DialogResult = System.Windows.Forms.DialogResult.OK; } } }