search
尋找貓咪~QQ 地點 桃園市桃園區 Taoyuan , Taoyuan

C#文字方塊(textbox) 限制長度+只能輸入英數字 – jashliao部落格

C#文字方塊(textbox) 限制長度+只能輸入英數字


只能輸入英數字

private void textBox_KeyPress(object sender, KeyPressEventArgs e)//限制英數字
{
	if (e.KeyChar == 8)//刪除鍵要直接允許
	{
		e.Handled = false;
	}
	else
	{
		if ((e.KeyChar >= 'a' && e.KeyChar <= 'z') || (e.KeyChar >= 'A' && e.KeyChar <= 'Z') || (e.KeyChar >= '0' && e.KeyChar <= '9'))//限制0~9和A~F
		{
			e.Handled = false;
		}
		else
		{
			e.Handled = true;
		}
	}
}

限制輸入長度屬性

TextBox.MaxLength


熱門推薦

本文由 jashliaoeuwordpress 提供 原文連結

寵物協尋 相信 終究能找到回家的路
寫了7763篇文章,獲得2次喜歡
留言回覆
回覆
精彩推薦