Skip to content

Commit

Permalink
Fixed typo in commented code (ItemSource > ItemsSource)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Statler committed Mar 27, 2015
1 parent f6de3ac commit 608c410
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Todo/SharedProject/Todo/Views/TodoListPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public TodoListPage ()
listView.ItemTemplate = new DataTemplate (typeof (TodoItemCell));

// These commented-out lines were used to test the ListView prior to integrating the database
// listView.ItemSource = new string [] { "Buy pears", "Buy oranges", "Buy mangos", "Buy apples", "Buy bananas" };
// listView.ItemSource = new TodoItem [] {
// listView.ItemsSource = new string [] { "Buy pears", "Buy oranges", "Buy mangos", "Buy apples", "Buy bananas" };
// listView.ItemsSource = new TodoItem [] {
// new TodoItem {Name = "Buy pears`"},
// new TodoItem {Name = "Buy oranges`", Done=true},
// new TodoItem {Name = "Buy mangos`"},
Expand Down

0 comments on commit 608c410

Please sign in to comment.