コード例 #1
0
 private void ObjectButtonClick(object sender, RoutedEventArgs e)
 {
     Examples = new AlphabetExampleCollection();
     Examples.Add("Apple");
     Examples.Add("Ball");
     Examples.Add("Chair");
     Examples.Add("Desk");
     Examples.Add("Eee PC");
     NotifyPropertyChanged("Examples");
 }
コード例 #2
0
 private void AnimalButtonClick(object sender, RoutedEventArgs e)
 {
     Examples = new AlphabetExampleCollection();
     Examples.Add("Ardvark");
     Examples.Add("Bat");
     Examples.Add("Cat");
     Examples.Add("Dingo");
     Examples.Add("Emu");
     NotifyPropertyChanged("Examples");
 }