版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 line
953 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace MaiMuAOI.SysUI.ProcessStep
  11. {
  12. public partial class StepSelectFrm : Form
  13. {
  14. private int _select;
  15. public int ProcessSelect { get { return _select; } }
  16. public StepSelectFrm()
  17. {
  18. InitializeComponent();
  19. UIStyle.SetUIStyle(this);
  20. this.uiTitel1.FatherForm = this;
  21. this.uiTitel1.ShowContrlBox(false, false, true);
  22. _select = 0;
  23. }
  24. private void skBtnSelect_Click(object sender, EventArgs e)
  25. {
  26. if (robtn1.Checked)
  27. _select = 100; //新流程
  28. else
  29. _select = 200; // 老流程
  30. this.Close();
  31. }
  32. }
  33. }