I would like to apply a SlideTransition effect to a TextBlock similar to the title of the Calendar app which changes when scrolling down or up through the days (starting from "TODAY").

The following code reported here is a good starting point:

SlideTransition slideTransition = new SlideTransition { Mode = SlideTransitionMode.SlideUpFadeIn };
ITransition transition = slideTransition.GetTransition(ApplicationTitle);
transition.Completed += delegate { transition.Stop(); };
transition.Begin();

but I'd like to declare it in XAML rather than developing in C#.

is it possible?

thank you,

Francesco

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You can not declare UIElement Transition in XAML. You can declare in XAML only Page Transitions. Check these two posts for more info about the structure/usage of the Toolkit`s Transitions in WP7:

WP7 Transitions in depth | key concepts and API

WP7 Transitions in depth | custom transitions

link|improve this answer
thank you for your answer Boryana. – matro May 20 '11 at 13:58
feedback

Is it possible? probably. almost anything is possible.

You're probably going to have to write your own attached property/event or behavior that wraps that code, and then wire that up into your xaml

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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