|
12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
-
- namespace MaiMuAOI.SysUI.ProcessStep
- {
- public partial class StepSelectFrm : Form
- {
- private int _select;
- public int ProcessSelect { get { return _select; } }
- public StepSelectFrm()
- {
- InitializeComponent();
- UIStyle.SetUIStyle(this);
- this.uiTitel1.FatherForm = this;
- this.uiTitel1.ShowContrlBox(false, false, true);
-
- _select = 0;
- }
-
- private void skBtnSelect_Click(object sender, EventArgs e)
- {
- if (robtn1.Checked)
- _select = 100; //新流程
- else
- _select = 200; // 老流程
-
- this.Close();
- }
- }
- }
|