Dim
Dim

Reputation: 4837

Animation transitions between pages with Navigation Service

I am using WPF in C# and NavigationService. For example:

this.NavigationService.Navigate(new CategoryPage());

How can I add transition fade or any other animation to navigate between pages?

Upvotes: 2

Views: 7233

Answers (1)

Jerther
Jerther

Reputation: 5996

See this answer: https://stackoverflow.com/a/2137596/2498426

It worked fine for me, but I had to replace ActualHeight by Height. However, the result is so choppy that I personnaly decided not to use animations at all.

Upvotes: 1

Related Questions