Method AddChild
| Improve this Doc View SourceAddChild<TChild>(RowBindingBase<TChild>, Func<T, TChild>)
Adds child binding.
Declaration
public RowCompositeBinding<T> AddChild<TChild>(RowBindingBase<TChild> childBinding, Func<T, TChild> childGetter)
where TChild : UIElement, new()
Parameters
Type | Name | Description |
---|---|---|
RowBindingBase<TChild> | childBinding | The child binding. |
System.Func<T, TChild> | childGetter | Getter to return child view element. |
Returns
Type | Description |
---|---|
RowCompositeBinding<T> | This row composite binding for fluent coding. |
Type Parameters
Name | Description |
---|---|
TChild | Type of child view element. |