예제 #1
0
        private void btnSelectClient_Click(object sender, EventArgs e)
        {
            FormSelectClient fm     = new FormSelectClient();
            DialogResult     result = fm.ShowDialog();

            if (result == DialogResult.OK)
            {
                tbComplaintClient.Text = fm.Person;
            }
        }
예제 #2
0
        private void btnSelectService_Click(object sender, EventArgs e)
        {
            FormSelectClient fm     = new FormSelectClient();
            DialogResult     result = fm.ShowDialog();

            if (result == DialogResult.OK)
            {
                tbServiceClient.Text = fm.Person;//回传参数
            }
        }