.Net常用技巧_TextBox文字框限制輸入的內容

來源:互聯網
上載者:User

標籤:des   style   blog   color   art   io   

1,限制只能輸入數字

   private void txtSize_KeyPress(object sender, KeyPressEventArgs e)        {            if (e.KeyChar != 8 && e.KeyChar != 13 && !char.IsDigit(e.KeyChar) && e.KeyChar != 46)            {                MessageBox.Show("請輸入數字");                e.Handled = true;            }        }

2,限制只能輸入大小寫字母

  private void txtChar_KeyPress(object sender, KeyPressEventArgs e)        {            if (e.KeyChar != 8 && e.KeyChar != 13 && (!char.IsUpper(e.KeyChar) && !char.IsLower(e.KeyChar)))                {                    MessageBox.Show("請輸入字母。");                    e.Handled = true;                }        }

3,限制輸入1位字母

   private void txtClassCode_KeyPress(object sender, KeyPressEventArgs e)        {            if (frmStart != "IsEdit")            {                if (e.KeyChar != 8 && e.KeyChar != 13 && (!char.IsUpper(e.KeyChar) && !char.IsLower(e.KeyChar)))                {                    MessageBox.Show("請輸入字母。");                    e.Handled = true;                }                if (e.KeyChar != 8 && e.KeyChar != 13 && (txtClassCode.Text.Length - txtClassCode.SelectedText.Length > 0))                {                    MessageBox.Show("只允許輸入一位字母。");                    e.Handled = true;                }            }        }

4,限制輸入內容長度

  private void SetTextLen()        {            this.txtClassCode.MaxLength = 30;            this.txtClassName.MaxLength = 100;            this.txtNnemonicCode.MaxLength = 128;            this.txtSpellCode.MaxLength = 255;            this.txtDescription.MaxLength = 255;            this.txtRemark.MaxLength = 255;        }

然後在表單預設載入事件中調用此方法。

註:這樣設定的文字框輸入長度限制,在手動輸入情況下是生效的。但是如果是程式賦值給文字框,則長度限制會不起作用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.