I have a richtextbox, when I leave it for example to go to another panel where I want to manipulate the selected text I can no longer see the selected text. Is there a way to make it still show the highlight?
Asked
Active
Viewed 1,290 times
1 Answers
8
Set the RichTextBox's HideSelection property to false
.

Jay Riggs
- 53,046
- 9
- 139
- 151
-
Not actually a good idea, the user can no longer reliably tell that the RTB has the focus. But good enough for the OP probably. – Hans Passant Mar 18 '11 at 23:09
-