MultiBinding Class

Summary

A XAML binding that calculates an aggregate value from multiple child Bindings.
Namespace
Avalonia.Data
Interfaces
Base Types
  • object
graph BT Type-->Base0["object"] Type-.->Interface0["IBinding"] click Interface0 "/api/Avalonia.Data/IBinding" Type["MultiBinding"] class Type type-node

Syntax

public class MultiBinding : IBinding

Constructors

Name Summary
MultiBinding()

Properties

Name Value Summary
Bindings IList<IBinding>
Gets the collection of child bindings.
Converter IMultiValueConverter?
Gets or sets the IMultiValueConverter to use.
ConverterParameter object?
Gets or sets a parameter to pass to Converter.
FallbackValue object
Gets or sets the value to use when the binding is unable to produce a value.
Mode BindingMode
Gets or sets the binding mode.
Priority BindingPriority
Gets or sets the binding priority.
RelativeSource RelativeSource?
Gets or sets the relative source for the binding.
StringFormat string?
Gets or sets the string format.
TargetNullValue object
Gets or sets the value to use when the binding result is null.

Methods