ObjectBindingT, TValue Constructor (T, String) |
Initializes a new instance of the ObjectBinding with the specified object and property for a
PropertyBindingT
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public ObjectBinding(
T dataItem,
string property
)
Public Sub New (
dataItem As T,
property As String
)
new :
dataItem : 'T *
property : string -> ObjectBinding
Parameters
- dataItem
- Type: T
object to get/set values from - property
- Type: SystemString
property of the dataItem to get/set values
Remarks
This is a shortcut to set up the binding to get/set values from a particular property of the specified object
See Also