WPF/INotifyPropertyChanged, change the value of txtA, the txtB and txtC should change automatically?
- by user1033098
I supposed, once i change the value of txtA, the txtB and txtC would change automatically, since i have implemented INotifyPropertyChanged for ValueA.
But they were not updated on UI. txtB was always 100, and txtC was always -50.
I don't know what's the reason.
My Xaml..
<Window x:Class="WpfApplicationReviewDemo.MainWindow"
…