Listbox WPF élément d'arrière-plan de couleur

Je veux changer la couleur de fond de ListBoxItem

Après recherche, j'ai décider d'utiliser cette

<ListBox>
        <ListBox.Resources>
            <!-- Background of selected item when focussed -->
            <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}"
                             Color="Blue" />
            <!-- Background of selected item when not focussed -->
            <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}"
                             Color="Blue" />

        </ListBox.Resources>
        <TextBlock>fdfsdf1</TextBlock>
        <TextBlock>fdfsdf3</TextBlock>
        <TextBlock>fdfsdf5</TextBlock>
        <TextBlock>fdfsdf3</TextBlock>
        <TextBlock>fdfsdf4</TextBlock>
    </ListBox>

Lorsqu'un listboxitem est concentré, le fond est bleu comme prévu, mais lorsque le listboxitem perd le focus, le fond devient gris. Comment puis-je rendre l'arrière-plan reste en bleu quand il perd le focus?

InformationsquelleAutor takayoshi | 2013-03-15