コード例 #1
0
ファイル: Form4.cs プロジェクト: Ragub0413/HandsOnActivity1
        private void btnRegister_Click(object sender, EventArgs e)
        {
            this.Close();
            FrmRegistration register = new FrmRegistration();

            register.ShowDialog();
        }
コード例 #2
0
        private void btnOkay_Click(object sender, EventArgs e)
        {
            SetFileName = txtFileName.Text + ".txt";
            this.Close();



            FrmRegistration registration = new FrmRegistration();

            registration.Show();
        }