That's my first article here and with it I start a cycle of articles that describe some xaml and mvvm-related features for creating Store applications.
These articles are more practical than theoretical, and as they may seem not too deep and can sometimes be wrong at some points, please don't hesitate to contact me and give advice how to enhance the article or code.
In this tutorial series we'll use Caliburn.Micro Conductor, EventAggregator and some VisualState transitions to build simple, but nice and seamless navigation in Windows Store app. Sample also demonstrates some dependency injection issues. But mostly it's just a demo. Please, don't expect it to follow guidelines strictly.
Navigation scheme we build will include
- Title page that has links to other application pages
- Back button to navigate backwards
- Breadcrumb-styled navigation to navigate between hierarchically linked pages and sections
- Main area to display application pages
- Animated closeable overlay panel to display additional information
In the first part of the journey we'll
Now, let's get started.
- create the project, wire it up
- make simple navigation
- add a back button functionality
Now, let's get started.