frmExprortSelect.cs 985 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
  6. {
  7. public class frmExprortSelect : LYFZ.Software.UI.FinancialManagement.frmExprortSelect
  8. {
  9. public int bcheckType = 0;
  10. public frmExprortSelect()
  11. {
  12. this.btn_Ok.Click += Btn_Ok_Click;
  13. this.btn_Cancel.Click += Btn_Cancel_Click;
  14. }
  15. private void Btn_Cancel_Click(object sender, EventArgs e)
  16. {
  17. this.Close();
  18. DialogResult = System.Windows.Forms.DialogResult.Cancel;
  19. }
  20. private void Btn_Ok_Click(object sender, EventArgs e)
  21. {
  22. if(rdo_All.Checked)
  23. {
  24. bcheckType = 2;
  25. }
  26. else if(rdo_ExportSelect.Checked)
  27. {
  28. bcheckType = 1;
  29. }
  30. DialogResult = System.Windows.Forms.DialogResult.OK;
  31. }
  32. }
  33. }