Search code examples
c#.netwpftextboxbackground-foreground

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?


Solution

  • Pre .NET 4.8 this is not possible.

    As noted by Woodman, this has been changed in .NET 4.8 with the introduction of the SelectionTextBrush property.