Summary
Initializes a new instance of the
InstancedBinding
class.
- Namespace
- Avalonia
.Data - Containing Type
- InstancedBinding
Syntax
public InstancedBinding(ISubject<object> subject, BindingMode mode, BindingPriority priority)
Remarks
This constructor can be used to create any type of binding and as such requires an
ISubject<Object>
as the binding source because this is the only binding
source which can be used for all binding modes. If you wish to create an instance with
something other than a subject, use one of the static creation methods on this class.
Parameters
Name | Type | Description |
---|---|---|
subject | ISubject |
The binding source. |
mode | BindingMode | The binding mode. |
priority | BindingPriority | The priority of the binding. |
Return Value
Type | Description |
---|---|
void |