Hi Ariel
Thank you for contacting Syncfusion Support.
We are able to reproduce the reported behavior on mouse pressed of item when another item is selected. If the two item get highlighted on this scenario, it is due to the brush we handled it for Pressed state of ComboBoxItemAdv internally . You can overcome this behavior and you can disable the highlighting of the other item by overriding the ComboBoxItemAdv template. We have prepared the sample for the sample and attached it for your reference. Please download it from following location:
Code:[XAML]
|
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsPressed" Value="true" />
<Condition Property="skin:SkinStorage.EnableTouch" Value="false" />
</MultiTrigger.Conditions>
<Setter Property="Foreground" Value="Black" />
</MultiTrigger>
|
Please try this solution and let us know if it is helpful.
Regards,
Senthil