How can you change the highlighted text color for a WPF TextBox? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T03:09:27Zhttp://stackoverflow.com/feeds/question/405967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox5How can you change the highlighted text color for a WPF TextBox?demwiz2009-01-02T03:37:26Z2009-12-07T16:45:34Z
<p>The WPF TextBox natively makes use of the System Highlight color for painting the background of selected text. I would like to override this and make it consistent since it varies by OS/user theme.</p>
<p>For ListBoxItems, there is a <a href="http://blogs.msdn.com/wpfsdk/archive/2007/08/31/specifying-the-selection-color-content-alignment-and-background-color-for-items-in-a-listbox.aspx" rel="nofollow">neat trick</a> (see below) where you can override the resource key for the HighlightBrushKey to customize the System Highlight color in a focused setting.</p>
<pre><code> <Style TargetType="ListBoxItem">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightGreen"/>
</Style.Resources>
</Style>
</code></pre>
<p>The same trick does not work for the TextBox unfortunately. Does anyone have any other ideas, besides "override the ControlTemplate"?</p>
<p>Thanks for any suggestions!</p>
<p><a href="http://blogs.msdn.com/llobo/archive/2009/10/27/new-wpf-features-caretbrush-selectionbrush.aspx" rel="nofollow">NOTE: This behavior appears to be added to WPF 4.</a></p>
http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox/406328#4063280Answer by Jobi Joy for How can you change the highlighted text color for a WPF TextBox?Jobi Joy2009-01-02T08:45:26Z2009-01-02T08:45:26Z<p>You can create a Style for the TextBox and write a Setter for the background. The TextBox style should be a default one so that any TextBox which comes under the visual tree will get the changed TextBox</p>
<pre><code><Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBox}">
</code></pre>
http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox/406332#4063326Answer by avinashr for How can you change the highlighted text color for a WPF TextBox?avinashr2009-01-02T08:51:16Z2009-01-02T08:51:16Z<p>I bumped into the same problem. </p>
<p>As Dr.WPF says </p>
<blockquote>
<p>"It is entirely impossible in the
current .NET releases (3.0 & 3.5
beta). The control is hardcoded to
use the system setting... it doesn't
look at the control template at all."</p>
</blockquote>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/bbffa6e3-2745-4e72-80d0-9cdedeb69f7f/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/bbffa6e3-2745-4e72-80d0-9cdedeb69f7f/</a></p>