Any key, how can we implement it?
This link doesn't help much ...
http://social.msdn.microsoft.com/Forums/en-US/winformsdesigner/thread/d1132ee5-acad-49f3-ae93-19d386fe2d12
just turn off focus
Focusable="False"
or
IsHitTestVisible="False"
if you need to hide the selection
SelectionOpacity="0"
Focusable="False"works for you, but the cursor is still selected , so you need the following:
Focusable="False" Cursor="Arrow"
IsTextSelectionEnabled is a property that I use in WinRT ...
IsTextSelectionEnabled
You tried .IsEnabled = false;