silverlight 文本框只能输入数字
2020-11-15 21:09
标签:com http blog style class div img code log c tar silverlight 文本框只能输入数字,搜素材,soscw.com silverlight 文本框只能输入数字 标签:com http blog style class div img code log c tar 原文地址:http://www.cnblogs.com/zxbzl/p/3699386.htmlvoid mobile_KeyUp(object sender, KeyEventArgs e)
{
Regex rg = new Regex("^[0-9]{1,11}$");
Regex rg1 = new Regex("\b");
if (!rg.IsMatch(mobile.Text) && !rg1.IsMatch(e.Key.ToString()))
{
if (mobile.Text.Length > 0)
{
mobile.Text = mobile.Text.Substring(0, mobile.Text.Length - 1);
mobile.SelectionStart = mobile.Text.Length;
}
else
{
mobile.Text = "";
}
}
}
上一篇:js实现上传单个文件
文章标题:silverlight 文本框只能输入数字
文章链接:http://soscw.com/index.php/essay/21519.html