I have got a hidden button and when if condition is true, the button is visible to the user. But I want to get user attention to the button so wanted to button to jump or flash on/off for few seconds.
I have seen a few examples but they all triggered by mouseover event. I tried to replace the event trigger with Data Trigger but didn't accept it.
Does anyone have a similar code or different idea of how to do it, please?
<Button Visibility="{Binding IsVisibleBtnCopyFromPreviousPriceList}" x:Name="BtnCopyProducts" Click="BtnCopyProductsist_Click" Grid.Column="1" Grid.Row="17" Grid.ColumnSpan="9" FontSize="16" Margin="0" Height="70" Width="70" Background="Transparent" BorderBrush="Transparent" >
<StackPanel>
<Image Source="Images/File_copy_64.png" Width="56" Height="56" />
</StackPanel>
</Button>