Introduction
In the first part of this series I showed you how to bind and display data in a control using C# code in a DataGrid. In this part I will show how the same thing can be done declaratively using Xaml.
Read More
Designing the patterns for your user interface is crucial as far as the user experience is concerned. The need for implementing the Breadcrumb design pattern arises when you need to place an option for the users of the application to know where they really are; for example, in a hierarchical structure where users need to go forward and backward. It’s especially useful when you want to create navigational functionality which will allow users to move several steps forward and backward. There are in general three good positions to place breadcrumbs: Above everything at the top of the page, just below the main navigation bar and just above the headline of the current page
Read More