Found the problem. Override the GetHashCode of the model causes the binding to fail updating the UI.

This commit is contained in:
2024-03-31 01:12:12 -04:00
parent 6a3a564d77
commit 155d629ad0

View File

@@ -56,19 +56,20 @@ namespace MVPLearning.RecordKeeping.SermonFiler
public override int GetHashCode()
{
HashCode hash = new();
hash.Add(Seid);
hash.Add(Title);
hash.Add(Scripture);
hash.Add(When);
hash.Add(Subject);
hash.Add(Minister);
hash.Add(Where);
hash.Add(Ref_No);
hash.Add(Notes);
hash.Add(Filename);
hash.Add(Web);
return hash.ToHashCode();
//HashCode hash = new();
//hash.Add(Seid);
//hash.Add(Title);
//hash.Add(Scripture);
//hash.Add(When);
//hash.Add(Subject);
//hash.Add(Minister);
//hash.Add(Where);
//hash.Add(Ref_No);
//hash.Add(Notes);
//hash.Add(Filename);
//hash.Add(Web);
//return hash.ToHashCode();
return base.GetHashCode();
}
}
}