Created
April 18, 2013 14:23
-
-
Save ericsk/5413101 to your computer and use it in GitHub Desktop.
按下按鈕後修改資料內容
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| 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