Skip to content

Instantly share code, notes, and snippets.

@ericsk
Created April 18, 2013 14:23
Show Gist options
  • Select an option

  • Save ericsk/5413101 to your computer and use it in GitHub Desktop.

Select an option

Save ericsk/5413101 to your computer and use it in GitHub Desktop.
按下按鈕後修改資料內容
...
private void OnButtonClicked(object sender, RoutedEventArgs e)
{
// 拿出 ListView 中的 ItemsSource
List<MessageModel> items = (List<MessageModel>)MyListView.ItemsSource;
// 修改其中一筆資料的內容
items[0].Name = "Dan";
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment