I would like to have a ItemsControl display different color when a item is clicked. My natural tendency was to have a trigger from where I can set the color I want ..

<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" TargetName="bdrBackground" Value="{get this value from a converter }"/>
</Trigger>

Can we set the Value from a converter?