コード例 #1
0
 public void HapusPertanyaanFavorite(PertanyaanViewModel item)
 {
     this.ItemsPertanyaanFavorit.Remove(item);
     NotifyPropertyChanged("FavoritesProperty");
 }
コード例 #2
0
 public void TambahPertanyaanFavorite(PertanyaanViewModel item)
 {
     this.ItemsPertanyaanFavorit.Add(item);
     NotifyPropertyChanged("FavoritesProperty");
 }