| 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;
- using CoreFS.CA06;
- using Infragistics.Win.UltraWinGrid;
- using System.Text.RegularExpressions;
- using System.Collections;
- namespace Core.LZMes.Client.QCM
- {
- public partial class QCM030605 : FrmBase
- {
- private string _Base_Code = "";
- public string Results
- {
- get { return _Base_Code; }
- }
- public QCM030605()
- {
- InitializeComponent();
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- if (!string.IsNullOrEmpty(comboBox1.Text))
- {
- _Base_Code = comboBox1.Text;
- this.DialogResult = DialogResult.OK;
- this.Close();
- }
- else
- {
- MessageBox.Show("请选择!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
- return;
- }
- }
-
- }
- }
|