コード例 #1
0
ファイル: StudentForm.cs プロジェクト: gogo71/BlogCodeSamples
        private void btnGetUserInput_Click(object sender, EventArgs e)
        {
            using (var detailForm = new DetailForm())
            {
                detailForm.ShowDialog();

                SetStudentName(detailForm.Name);
            }
        }
コード例 #2
0
        private void btnGetUserInput_Click(object sender, EventArgs e)
        {
            using (var detailForm = new DetailForm())
            {
                detailForm.ShowDialog();

                EmployeeName = detailForm.Name;
            }
        }
コード例 #3
0
        private void btnGetUserInput_Click(object sender, EventArgs e)
        {
            using (var detailForm = new DetailForm())
            {
                detailForm.ShowDialog();

                SetStudentName(detailForm.Name);
            }
        }
コード例 #4
0
        private void btnGetUserInput_Click(object sender, EventArgs e)
        {
            using (var detailForm = new DetailForm())
            {
                detailForm.ShowDialog();

                EmployeeName = detailForm.Name;
            }
        }