using Stone.Common; 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 Stone.WinModule.JisData { public partial class frmRePrint : Form { public frmRePrint() { InitializeComponent(); } private void frmRePrint_Load(object sender, EventArgs e) { } private void btnOK_Click(object sender, EventArgs e) { try { if (this.chkList.SelectedItems.Count == 0) throw new Exception("请勾选要补打的序列单"); this.DialogResult = DialogResult.OK; this.Close(); } catch (Exception ex) { MyMessageBox.ShowErrorMessage(ex.Message); } } private void btnClose_Click(object sender, EventArgs e) { this.Close(); } } }