How to Bind Multiple Properties
MultiBinding
In scenarios where a target property must be assigned a result calculated from several other bound properties, a
MultiBinding
may be the appropriate solution. MultiBinding
aggregates multiple Binding
objects and produces a result
through the use of an IMultiValueConverter
. The Convert
method is called each time any of the bound properties notify
of change. Similar to Binding
, MultiBinding
can be used to bind properties on ViewModels, Control
s, or other sources.
warning
MultiBinding
only supports BindingMode.OneTime
and BindingMode.OneWay
.