Reputation: 1327
In Windows forms we have the option to set the binding of a control to a property, and then set the DataSourceUpdateMode to OnPropertyChanged.
How can this be achieved in WPF?
Thanx in advance
Upvotes: 0
Views: 205
Reputation: 6014
The equivalent to DataSourceUpdateMode in WPF is UpdateSourceTrigger
.
Upvotes: 2