silverlight 文本框只能输入数字

2020-11-15 21:09

阅读:563

标签:com   http   blog   style   class   div   img   code   log   c   tar   

soscw.com,搜素材soscw.com,搜素材
void 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 = "";
                }
            }
        }
View Code

 

silverlight 文本框只能输入数字,搜素材,soscw.com

silverlight 文本框只能输入数字

标签:com   http   blog   style   class   div   img   code   log   c   tar   

原文地址:http://www.cnblogs.com/zxbzl/p/3699386.html


评论


亲,登录后才可以留言!