예제 #1
0
        private void TxtPassword_Enter(object sender, EventArgs e)
        {
            var dia = new NumericKeypadDialog("Enter Password", txtPassword);

            dia.ShowDialog();
            SetFieldsVisibility();
        }
예제 #2
0
        private void TxtPassword_Click(object sender, EventArgs e)
        {
            var dia = new NumericKeypadDialog("Enter Initial Password", txtPassword);

            dia.ShowDialog();
        }
예제 #3
0
        private void TxtUserId_Click(object sender, EventArgs e)
        {
            var dia = new NumericKeypadDialog("Enter User Id", txtUserId);

            dia.ShowDialog();
        }
예제 #4
0
        private void TxtRepeatPassword_Enter(object sender, EventArgs e)
        {
            var dia = new NumericKeypadDialog("Repeat Password", txtRepeatPassword);

            dia.ShowDialog();
        }