我在Visual Studio中使用Xamarin.Forms。現在我遇到了ImplementPropertyChanged(Nuget:PropertyChanged.Fody)工作不正常的問題。這個Nuget和MasterDetailPage有一個已知的問題嗎?Xamarin.Forms與PropertyChanged.Fody MasterDetailPage不起作用
我使用MVVM模式,並具有實現PropertyChanged的BaseViewModel。
[ImplementPropertyChanged]
public class BaseViewModel
{
public BaseViewModel()
{
}
}
每個視圖模型是這樣的
public class MyViewModel() : BaseViewModel
{
}
感謝, 揚