Now that we have updated our user interface to include our ContextActions as well as each of the menu item choices that we would like to appear, including each of the various data bindings, the next step is to begin updating the underlying C# code within our WalksMainPage code-behind file so that it can communicate with our ViewModel and populate our ListView with information from our WalkDataModel.
Let's take a look at how we can achieve this by following these steps:
Open the WalksMainPage.xaml.cs code-behind file, ensuring that it is displayed within the code editor, and enter the following highlighted code sections:
// // WalksMainPage.xaml.cs // Displays Walk Information within a ListView ...