How do i create multislide application in WPF? What is beast approach? What i need is something very similar to having tabcontrol with multiple pages and navigation buttons bellow, but i dont think that tab control is best for this task. I would like to have each view to be in seperate .xaml + class file. AND- it would be cool to have some animiation, when navigating to another page (like old page slides away or something like that. What would be best technique to achieve this?
------- SOLUTION --------- Thank you for your responses. Solution in deed was to use MVVM + i sliding animation i performed by catching moment, when content get changed for "active view" content control using this technique - http://stackoverflow.com/questions/2599788/wpf-data-binding-trigger-before-content-changed
afet that i store current content in image using RenderTargetBitmap and use simple animation to slide Image away and active content in.