BindableObject.SetBinding(BindableProperty, BindingBase) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Affecte une liaison à une propriété.
public void SetBinding (Xamarin.Forms.BindableProperty targetProperty, Xamarin.Forms.BindingBase binding);
member this.SetBinding : Xamarin.Forms.BindableProperty * Xamarin.Forms.BindingBase -> unit
Paramètres
- targetProperty
- BindableProperty
BindableProperty sur lequel définir une liaison.
- binding
- BindingBase
Liaison à définir.
Remarques
L’exemple suivant montre comment définir une liaison à une propriété :
var label = new Label ();
label.SetBinding (Label.TextProperty, new Binding ("Name"));
label.BindingContext = new {
Name = "John Doe",
Company = "Xamarin"
};
Debug.WriteLine (label.Text); // prints "John Doe"