| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.LgMes.Client.LgJobMgt
- {
- public partial class frmMolirnleave : Form
- {
- public string strStationCode=""; //岗位编码
- public frmMolirnleave()
- {
- InitializeComponent();
- }
- private void frmMolirnleave_Load(object sender, EventArgs e)
- {
- }
- private void btnOk_Click(object sender, EventArgs e)
- {
- if (rbBOF01.Checked)
- strStationCode = rbBOF01.Tag.ToString();
- if (rbBOF02.Checked)
- strStationCode = rbBOF02.Tag.ToString();
- if (rbBOF03.Checked)
- strStationCode = rbBOF03.Tag.ToString();
- this.Close();
- }
- private void btnNo_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|