2

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?

Dim
  • 4,527
  • 15
  • 80
  • 139

1 Answers1

1

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.

Community
  • 1
  • 1
Jerther
  • 5,558
  • 8
  • 40
  • 59