| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.ZGMil.NodeResultQuery
- {
- public partial class FrmUserRomm : Form
- {
- /// <summary>
- /// 台号
- /// </summary>
- private string userRomm = null;
- public string UserRomm
- {
- get { return userRomm; }
- set { userRomm = value; }
- }
- public FrmUserRomm()
- {
- InitializeComponent();
- this.comboBox1.SelectedIndex = 0;
- }
- private void btn_Canle_Click(object sender, EventArgs e)
- {
- this.Dispose();
- this.Close();
- }
- private void btn_OK_Click(object sender, EventArgs e)
- {
-
- UserRomm = this.comboBox1.SelectedItem.ToString();
- this.Dispose();
- this.Close();
- }
- }
- }
|