I am developing a Windows Phone 8 application using C # and I am trying to disable copy and paste in a TextBox. anyone can help.
I tried:
private void digitBox_KeyDown(object sender, KeyEventArgs e) { if (e.Key == (Key.Ctrl | Key.V) ) { e.Handled = true; digitBox.SelectionLength = 0; } }
thanx
source share