BindableObject.BindingContextProperty Field

Definition

Bindable property for BindingContext.

public: static initonly Microsoft::Maui::Controls::BindableProperty ^ BindingContextProperty;
public static readonly Microsoft.Maui.Controls.BindableProperty BindingContextProperty;
 staticval mutable BindingContextProperty : Microsoft.Maui.Controls.BindableProperty
Public Shared ReadOnly BindingContextProperty As BindableProperty 

Field Value

Remarks

Typically, the runtime performance is better if BindingContext is set after all calls to SetBinding(BindableProperty, BindingBase) have been made.

The following example shows how to set a binding to the BindingContext:

class PersonView : ContentView 
{
  public PersonView ()
  {
    var label = new Label ();
    label.SetBinding (Label.TextProperty, "Name");
    Content = label;
  }
}

var stack = new StackLayout {
  Orientation = StackOrientation.Vertical,  
};

var jane = new PersonView ();
jane.SetBinding (BindableObject.BindingContext, "Jane");
stack.Children.Add (jane);

var john = new PersonView ();
john.SetBinding (BindableObject.BindingContext, "John");
stack.Children.Add (john);

stack.BindingContext = new {Jane = new {Name = "Jane Doe"}, John = new {Name = "John Doe"}};

Applies to