I can't find how to add in a button style the raise event to click button when there is a touchdown (with touch screen), do you know how to add this in the style? I need to do it because when using touch screen the clickEvent is not fire at first time, generally at second touch (when focus is set to window).
<Style TargetType="{x:Type Button}">
<Style.Triggers>
<EventTrigger RoutedEvent="TouchDown">
How to add the Raise click event??
</EventTrigger>
</Style.Triggers>
</Style>
Thank you for your help.