Hello,



I discovered this [1] blog which indicates that selection colour (aka
highlight) can be altered on list controls by changeing a static key.

I need to do it on a text box. I tried this [2] and it does nothing.

Any ideas?

adam

[1] http://dedjo.blogspot.com/2007/04/ho...mbobox-or.html

[2]
<Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
<StackPanel>
<TextBox>
<TextBox.Resources>
<SolidColorBrush x:Key="{x:Static
SystemColors.HighlightColorKey}" Color="Yellow" />
</TextBox.Resources>
Hello World
</TextBox>
</StackPanel>
</Page>