vote up 1 vote down star

How can I trigger a Command in my ViewModel at the end of an animation/storyboard using XAML only.

flag

51% accept rate

1 Answer

vote up 0 vote down

You can create Command property in your Model and manually execute command on Animmiation Completed event

link|flag
I suppose this can be done in XAML only using eventtriggers? – bitbonk Oct 9 at 11:04
Yea, I think because Annimation classes don't have any command property – ArsenMkrt Oct 9 at 11:08
I can register for the event in a trigger but I can not start the command in a trigger. At least I dont't see how. – bitbonk Oct 9 at 11:14
do you have command property in model? if(model.command.CanExecute) model.Command.Execute(...); – ArsenMkrt Oct 9 at 11:19
I have that in the VIEWModel yes. – bitbonk Oct 9 at 15:04
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.