BindingBase.StringFormat Propriété
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.
Obtient ou définit le format de chaîne de cette liaison.
public:
property System::String ^ StringFormat { System::String ^ get(); void set(System::String ^ value); };
public string StringFormat { get; set; }
member this.StringFormat : string with get, set
Public Property StringFormat As String
Valeur de propriété
Chaîne spécifiant le format de la valeur de cette liaison.
Remarques
Utilisé pour fournir un format d’affichage pour la valeur de liaison ou composer la valeur avec d’autres texte. Les implémenteurs de BindingBase décider comment le format de chaîne est utilisé, mais toutes les conventions standard Format de prise en charge.
Binding permet d’obtenir un argument pour sa valeur singulière.
Exemple simple montrant la composition du texte et la détermination du format d’affichage pour la valeur avec un Binding
Label label = new Label();
label.AddBinding (new Binding (Label.TextProperty, "Price") {
StringFormat = "Price: {0:C2}"
});