- targetProperty
- The BindableProperty on which to set a binding.
- binding
- The binding to set.
The following example shows how to set a binding to a property:
C# Example
var label = new Label ();
label.SetBinding (Label.TextProperty, new Binding ("Name"));