BindableObject.BindingContext Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets object that contains the properties that will be targeted by the bound properties that belong to this BindableObject.
public object BindingContext { get; set; }
member this.BindingContext : obj with get, set
Property Value
An System.Object that contains the properties that will be targeted by the bound properties that belong to this BindableObject. This is a bindable property.
Remarks
The following example shows how to apply a BindingContext and a Binding to a Label (inherits from BindableObject):
var label = new Label ();
label.SetBinding (Label.TextProperty, "Name");
label.BindingContext = new {
Name = "John Doe",
Company = "Xamarin"
};
Debug.WriteLine (label.Text); // prints "John Doe"