Replies: 1 comment 2 replies
-
TestClass doesn't implement INotifyPropertyChanged, so the change in its TestNumber property isn't passed on to anyone. The manual raising of PropertyChanged for the TestClass property on the MainViewModel gets filtered out because TestClass hasn't actually changed. To get this working in Avalonia TestClass will also have to implement INotifyPropertyChanged, and raise notifications when TestNumber changes. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our WPF project has a number of bindings used like this
Bindings are notified by an explicit event invoke through 'TestClass' mid node
But this not work in Avalonia, how can we acheive that ?
Beta Was this translation helpful? Give feedback.
All reactions