Exemple #1
0
        private void mPasswordLineEdit_FocusInEvent(object sender, EventArgs e)
        {
            if (mPasswordLineEdit == null)
            {
                Debug.Assert(false);
                return;
            }

            if (mFirstGotFocus && (mPasswordLineEdit != null))
            {
                mPasswordLineEdit.SelectAll();
            }

            mFirstGotFocus = false;
        }