How to Disable the up and Down arrow keys for a silverlight listbox?
- by Subhen
Hi,
I want to disable the navigation on press of UP and Down arrow keys in Silverlight.
I tried with a case statement:
case Keys.UP:
e.Handled = false;
break;
This is not Workin :( . Help