How can you change the highlighted text color for a WPF TextBox? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:09:27Z http://stackoverflow.com/feeds/question/405967 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox 5 How can you change the highlighted text color for a WPF TextBox? demwiz 2009-01-02T03:37:26Z 2009-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> &lt;Style TargetType="ListBoxItem"&gt; &lt;Style.Resources&gt; &lt;SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightGreen"/&gt; &lt;/Style.Resources&gt; &lt;/Style&gt; </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#406328 0 Answer by Jobi Joy for How can you change the highlighted text color for a WPF TextBox? Jobi Joy 2009-01-02T08:45:26Z 2009-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>&lt;Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBox}"&gt; </code></pre> http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox/406332#406332 6 Answer by avinashr for How can you change the highlighted text color for a WPF TextBox? avinashr 2009-01-02T08:51:16Z 2009-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 &amp; 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>