Reputation: 37633
Any clue how do we can implement it?
This link doesn't help a lot...
Upvotes: 5
Views: 4926
Reputation: 519
Focusable="False"
works for you, but the cursor is still selectable so what you need is this:
Focusable="False"
Cursor="Arrow"
Upvotes: 5
Reputation: 907
just disable focus
Focusable="False"
or
IsHitTestVisible="False"
if you need to hide selection
SelectionOpacity="0"
Upvotes: 16