ObjectBindingT, TValue Constructor (T, IndirectBindingTValue) |
Initializes a new instance of the ObjectBinding with the specified object and binding to get/set values with
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public ObjectBinding(
T dataItem,
IndirectBinding<TValue> innerBinding
)
Public Sub New (
dataItem As T,
innerBinding As IndirectBinding(Of TValue)
)
new :
dataItem : 'T *
innerBinding : IndirectBinding<'TValue> -> ObjectBinding
Parameters
- dataItem
- Type: T
object to get/set values from - innerBinding
- Type: Eto.FormsIndirectBindingTValue
binding to use to get/set the values from the dataItem
See Also