예제 #1
0
파일: Login.cs 프로젝트: JohnBoyB/JHack
        //Open registration form
        private void link_Regestartion_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Regestration reg = new Regestration();

            this.Hide();
            reg.ShowDialog();
            this.Close();
        }
예제 #2
0
파일: Login (2).cs 프로젝트: JohnBoyB/JHack
        //Open regestration form
        private void link_Registartion_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Regestration reg = new Regestration();

            reg.Show();
            this.Hide();
            //ToDo Logging
        }