Disable richtextbox wpf selection

4 answers

just turn off focus

  Focusable="False" 

or

  IsHitTestVisible="False"

if you need to hide the selection

  SelectionOpacity="0"
+12
source

Focusable="False"works for you, but the cursor is still selected , so you need the following:

Focusable="False"
Cursor="Arrow"
+5
source

IsTextSelectionEnabled is a property that I use in WinRT ...

+2
source

You tried .IsEnabled = false;

-2
source

All Articles