do x:bind property need INotifyPropertyChanged implementation #7604
Unanswered
heartacker
asked this question in
Q&A
Replies: 1 comment
-
For updating the property from code, yes, you must implement More specifically, see Observable Object and Putting things together. public class User : ObservableObject
{
private string name;
public string Name
{
get => name;
set => SetProperty(ref name, value);
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I see some doc say,x:bind can bing to any peoperty
But It can not recieve any update when property changed
Beta Was this translation helpful? Give feedback.
All reactions