Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the highlighted text's Foreground color for a WPF TextBox?

I am working on an application having both WinForms and WPF controls; In case of WinForms TextBox selected text Background color comes Blue and White respectively whereas in WPF TextBox it is LightBlue and Black.

As answered in these questions I can use SelectionBrush property(WPF 4) to change the selected text's background, but How can I change the foreground color of selected text?

How can you change the highlighted text color for a WPF TextBox?

How can I change the highlighted text color for a TextBox?

like image 536
akjoshi Avatar asked Jun 01 '12 12:06

akjoshi


2 Answers

You cannot, the control does not allow for it.

like image 123
H.B. Avatar answered Nov 06 '22 23:11

H.B.


Starting with .net 4.8 it is possible in TextBox using TextBoxBase.SelectionTextBrush https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.primitives.textboxbase.selectiontextbrush?view=net-5.0

like image 45
Woodman Avatar answered Nov 06 '22 22:11

Woodman