<Combobox.Style>
<Style TargetType="{x:Type Combobox}">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
////// I want to execute command here/////
</Trigger>
</Style.Triggers>
</Style>
Is it possible to execute command here if there are another way then please tell me
Thanks in advance
You can achieve it by modifying your item template of combo box.. Use Button as Combo box item in the combo box. You can do a command binding to that button and change the Click mode to Hover.