| BindingPropertyTValue Method (String) | 
 
            Creates a new indirect property binding using the specified propertyName.
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static IndirectBinding<TValue> Property<TValue>(
	string propertyName
)
Public Shared Function Property(Of TValue) ( 
	propertyName As String
) As IndirectBinding(Of TValue)
static member Property : 
        propertyName : string -> IndirectBinding<'TValue> 
Parameters
- propertyName
- Type: SystemString
 Name of the property to bind to.
Type Parameters
- TValue
- The type of the property.
Return Value
Type: 
IndirectBindingTValue[Missing <returns> documentation for "M:Eto.Forms.Binding.Property``1(System.String)"]
 Remarks
Remarks
            This supports single and multiple levels of property accessors in the model.
            
 Examples
Examples
            Use this like so:
            
public class MyChild { public SomeChildProperty { get; set; } }
public class MyModel { 
    public ChildObject { get; set; } 
    public int IntProperty { get; set; } 
}
Binding.Property("IntProperty");
Binding.Property("ChildObject.SomeChildProperty"); See Also
See Also