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 { /// /// 台号 /// 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(); } } }