Ejemplo n.º 1
0
 protected static void CheckIntPasting(object sender, DataObjectPastingEventArgs e)
 {
     if (e.DataObject.GetDataPresent(typeof(String)))
     {
         String text = (String)e.DataObject.GetData(typeof(String));
         if (!CheckText.IsInt(text))
         {
             e.CancelCommand();
         }
     }
     else
     {
         e.CancelCommand();
     }
 }
Ejemplo n.º 2
0
 protected static void CheckIntKeyDown(object sender, TextCompositionEventArgs e)
 {
     e.Handled = !CheckText.IsInt(e.Text);
 }