Advertisement
joapaspe

InkEdit Recognition Events

Mar 16th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1.    private void CellText_Gesture(object sender, Microsoft.Ink.InkEditGestureEventArgs e)
  2.         {
  3.  
  4.             CellTextBox ct = sender as CellTextBox;
  5.  
  6.             //MessageBox.Show("Gesture recognized");
  7.             if (e.Gestures[0].Id == ApplicationGesture.Left || e.Gestures[0].Id == ApplicationGesture.Right)
  8.             {
  9.                 ct.Text = " ";
  10.  
  11.             }
  12.  
  13.         }
  14.  
  15.         private void CellText_Recognize(object sender, InkEditRecognitionEventArgs e)
  16.         {
  17.             CellTextBox ct = sender as CellTextBox;
  18.  
  19.            
  20.  
  21.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement