898 questions
PropertyChanged is null in winui3.0
jia liang
21
Reputation points
`public sealed partial class MainWindow:Window,INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged([callerMemberName]string propertyName="")
{
PropertyChanged?.Invoke(propertyName);
}
}`
PropertyChanged is null.
Windows development | Windows App SDK
Sign in to answer