示例#1
0
文件: Form1.cs 项目: xiangnanyue/DDD
        private void button3_Click(object sender, EventArgs e)
        {
            UseExistingCustomerIDForm form = new UseExistingCustomerIDForm();

            form.ShowDialog(this);
            string s = UseExistingCustomerIDForm.GetCustomerID();

            if (s != string.Empty)
            {
                tbRandomNumber.Text = s;
            }
        }
示例#2
0
文件: Form1.cs 项目: wshanshan/DDD
 private void button3_Click(object sender, EventArgs e)
 {
     UseExistingCustomerIDForm form = new UseExistingCustomerIDForm();
     form.ShowDialog(this);
     string s = UseExistingCustomerIDForm.GetCustomerID();
     if (s != string.Empty)
     {
         tbRandomNumber.Text = s;
     }
 }