Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Blend gave me these colors:</p> <pre><code>&lt;SolidColorBrush x:Key="ComboBox.MouseOver.Glyph" Color="#FF000000"/&gt; &lt;LinearGradientBrush x:Key="ComboBox.MouseOver.Background" EndPoint="0,1" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFECF4FC" Offset="0.0"/&gt; &lt;GradientStop Color="#FFDCECFC" Offset="1.0"/&gt; &lt;/LinearGradientBrush&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Border" Color="#FF7EB4EA"/&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Background" Color="#FFFFFFFF"/&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Border" Color="#FF7EB4EA"/&gt; &lt;LinearGradientBrush x:Key="ComboBox.MouseOver.Editable.Button.Background" EndPoint="0,1" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFEBF4FC" Offset="0.0"/&gt; &lt;GradientStop Color="#FFDCECFC" Offset="1.0"/&gt; &lt;/LinearGradientBrush&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Button.Border" Color="#FF7EB4EA"/&gt; </code></pre> <p>These are the blue colors you are getting.<br /> If you right click the <code>ComboBox</code> then <code>Edit Template -&gt; Edit a Copy...</code> you should be able to change the color to whatever you want. Look for <code>MouseOver</code> entries.</p> <p><img src="https://i.stack.imgur.com/uAgqw.jpg" alt="Edit template"></p> <p>The code can be inserted anywhere you like it. In my example it is inside <code>&lt;Window.Resources&gt;</code>:<br/></p> <pre><code>&lt;Window.Resources&gt; ... &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Border" Color="#FF7EB4EA"/&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Background" Color="#FFFFFFFF"/&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Border" Color="#FF7EB4EA"/&gt; &lt;LinearGradientBrush x:Key="ComboBox.MouseOver.Editable.Button.Background" EndPoint="0,1" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFEBF4FC" Offset="0.0"/&gt; &lt;GradientStop Color="#FFDCECFC" Offset="1.0"/&gt; &lt;/LinearGradientBrush&gt; &lt;SolidColorBrush x:Key="ComboBox.MouseOver.Editable.Button.Border" Color="#FF7EB4EA"/&gt; ... &lt;/Window.Resources&gt; </code></pre> <p>This is just an example!!</p> <p>It's a rather big code snippet, but this is the part you want to change.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload