天天看点

windows phone中textbox只能输入数字

两种方法
           

第一种比较简单,直接设置textbox的属性,属性是InputScope

第二种就比较麻烦,需要添加一个类,使该类继承于textbox,然后设置其只能输入数字,需要在xaml页面添加命名空间,然后引用就行了

设置类的代码:

private readonly Key[] numeric = new Key[] { Key.Back, Key.NumPad0, Key.NumPad1, Key.NumPad2, Key.NumPad3, Key.NumPad4, Key.NumPad5, Key.NumPad6, Key.NumPad7, Key.NumPad8, Key.NumPad9 }; 
          public NumericTextBox()      
          {            //将文本设置为  电话号码的文本输入模式   
              this.Width = 300.0;
              this.Height = 80.0;
              this.InputScope = new InputScope();        
              this.InputScope.Names.Add(new InputScopeName() { NameValue = InputScopeNameValue.TelephoneNumber });  
          }   
         protected override void OnKeyDown(KeyEventArgs e)   
         {  //如果是数字键或者返回键则设置e.Handled = true; 表示事件已经处理    
             if(Array.IndexOf(numeric,e.Key) == -1)           
             {               
                 e.Handled = true;         
             }           
             base.OnKeyDown(e); // important, if not called the back button is not handled     
         }
           

继续阅读