Chrisjan Lodewyks
Chrisjan Lodewyks

Reputation: 1327

DataSourceUpdateMode equivalent WPF

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

Answers (1)

Florian Gl
Florian Gl

Reputation: 6014

The equivalent to DataSourceUpdateMode in WPF is UpdateSourceTrigger.

Upvotes: 2

Related Questions