BlockStudio.Dialogs.FrmAccountProperties.txtPassword_KeyPress C# (CSharp) 메소드

txtPassword_KeyPress() 개인적인 메소드

private txtPassword_KeyPress ( object sender, KeyPressEventArgs e ) : void
sender object
e KeyPressEventArgs
리턴 void
        private void txtPassword_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == Convert.ToChar(Keys.Enter))
            {
                Finished();
            }
        }