Blinking Button Animation
Hi again! This is actually a new question, and by rights, you should start a new thread, so the title is more targetted, but the answer is simple, so I'll reply here :) It depends how you want to...
View ArticleBlinking Button Animation
Hi Pete,I was further looking to change this button's look by writing a control template which gives it a circular shape. The animation etc. works fine but I don't know how to create the "disabled"...
View ArticleBlinking Button Animation
Do not try to stop the storyboard on a click trigger, you can just rely on the Trigger exit actions to do all the work. In your click handler "btnSave_Click", simply change DataChanged back to...
View ArticleBlinking Button Animation
Hi Pete,Thanks for your response. This animation works fine but I have a further question. When I click this button, I want to stop the animation (blinking) and want the button to become disable again...
View ArticleBlinking Button Animation
Sounds like you need a DataTrigger:<Window x:Class="WpfApplication64.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
View ArticleBlinking Button Animation
Hi,I have a button on WPF MainWindow that I want to start blinking when a property in its Data context changes. Currently, I enable that button on DataChanged event with the code below, but how can I...
View Article