コード例 #1
0
ファイル: LogonScreen.cs プロジェクト: BECampbellIT/Demo
        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();
        }