Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LuceCarter committed Nov 8, 2019
1 parent b813a8b commit ea04020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Part 3 - Navigation/README.md
Expand Up @@ -26,7 +26,7 @@ After:


2. In `MainPage.xaml.cs`, create a method called `ListView_ItemSelected`:
- This code checks to see if the selected item is non-null and then use the built in `Navigation` API to push a new page and deselect the item.
- This code checks to see if the selected item is non-null and then uses the built in `Navigation` API to push a new page and deselect the item.

```csharp
async void ListView_ItemSelected(object sender, SelectedItemChangedEventArgs e)
Expand All @@ -43,7 +43,7 @@ async void ListView_ItemSelected(object sender, SelectedItemChangedEventArgs e)

### ViewModel for Details

1. Inside of our `ViewModel/MonkeyDetailsViewModel.cs` will house our logic for assigning the monkey to the view model.
1. Inside of our `ViewModel/MonkeyDetailsViewModel.cs`, we will house our logic for assigning the monkey to the view model.

Let's first create a bindable property for the `Monkey`:

Expand Down

0 comments on commit ea04020

Please sign in to comment.