我以前类似的question通过使用INotifyPropertyChanged
得到了回答。但是,研究告诉我,从GalaSoft.MvvmLight继承ViewModelBase
与INotifyPropertyChanged
相似。
我从问题中使用this answer来更改ObservableCollection
中每个项目的数据。但是我已经不想继承INotifyPropertyChanged
了,所以我不想再使用ViewModelBase
了。下面的代码是我从已经提到的答案中添加的一些代码:
食品分类
private bool _isAllSelected = true;
public bool IsAllSelected
{
get
{
return _isAllSelected;
}
set
{
Set(IsAllSelected, ref _isAllSelected, value);
// send message to viewmodel
Messenger.Default.Send(Message.message);
}
}
ViewModel类
// message handler
private void MsgHandler(Message message)
{
RaisePropertyChanged(SelectAllPropertyName);
}
// the property that change all checkbox of fruits
public const string SelectAllPropertyName = "SelectAll";
public bool SelectAll
{
set
{
bool isAllSelected = Foods.Select(c => c.IsAllSelected).Any();
foreach (var item in Foods.SelectMany(c => c.Fruits).ToList())
{
item.IsSelected = isAllSelected;
}
}
}
// receives message function, called at the start
public void Receiver()
{
Messenger.Default.Register<Message>(this, MsgHandler);
}
这里的问题是,它不能像以前使用
INotifyPropertyChanged
一样工作。 最佳答案
您已经提到您正在使用the answer from your previous question,而且此问题中的此“因为我已经继承了ViewModelBase,所以我不再使用INotifyPropertyChanged”。
实际上,您可以从INotifyPropertyChanged
类中删除Fruit
的继承关系(请参阅previous question),因为只要您在类PropertyChangedEventHandler
中使用System.ComponentModel
,您仍然可以使用usings
。
因此,基本上,这将是您上一个问题的答案代码的唯一变化:
public class Fruit : ViewModelBase
{
....
}
关于c# - 通过在MVVM中更改的属性来更改另一个类的属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58112145/