ObjectBindingTValue Class |
Binding for a particular object to get/set values from/to
Inheritance Hierarchy
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public class ObjectBinding<TValue> : ObjectBinding<Object, TValue>
Public Class ObjectBinding(Of TValue)
Inherits ObjectBinding(Of Object, TValue)
type ObjectBinding<'TValue> =
class
inherit ObjectBinding<Object, 'TValue>
end
Type Parameters
- TValue
- The type of value for the binding.
Constructors Remarks
This binding provides a way to get/set values for a particular object. This uses
a
IndirectBindingT as its logic to actually retrieve/set the values.
This acts as a bridge between the
IndirectBindingT and
DirectBindingT
so that you can utilize the
DataValueChanged method.
Typically, one would use the
PropertyBindingT, or the
[C:ObjectBinding{T,TValue}(T, string)]
constructor to hook up this binding to a particular property of the specified object
See Also