| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace PTMedicalInsurance.Forms
- {
- public partial class TradeNo : Form
- {
- public string tradeNO;
- public TradeNo()
- {
- InitializeComponent();
- this.StartPosition = FormStartPosition.CenterParent;
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- if (string.IsNullOrEmpty(tbTradeNo.Text))
- {
- MessageBox.Show("请输入医保结算交易流水号TradeNo!");
- return;
- }
- tradeNO = tbTradeNo.Text;
- this.DialogResult = DialogResult.OK;
- }
- private void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- this.DialogResult = DialogResult.Cancel;
- }
- }
- }
|