在我的UWP应用程序中,我有一个SplitView,它包含不同的页面作为框架。这没有任何问题。现在我需要更新SplitViewPane的一些内容。举个例子,我的SplitView中有一个RadioButton,叫做Home。在这篇文章的后面,我有一个带有TextBlock的Ellipse,用于指示通知。所以我需要一种方法来从其他页面或类更新这个TextBlock。我已经用INotifyPropertyChanged事件实现了一个类,并设置了绑定到这个TextBlock,但我需要在某处设置内容。
/编辑1
这是我的班级:
public class Notification : INotifyPropertyChanged
{
private int _notification;
public int notification
{
get
{
return _notification;
}
set
{
_notification = value;
RaisePropertyChanged();
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged([CallerMemberName] string name = "")
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
}