MultiBinding.ConverterParameter 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 un paramètre facultatif à passer à un convertisseur comme information supplémentaire.
public:
property System::Object ^ ConverterParameter { System::Object ^ get(); void set(System::Object ^ value); };
public object ConverterParameter { get; set; }
member this.ConverterParameter : obj with get, set
Public Property ConverterParameter As Object
Valeur de propriété
Paramètre à passer à un convertisseur. La valeur par défaut est null
.
Remarques
Utilisation des éléments de propriété XAML
<object>
<object.ConverterParameter>
converterParameter
</object.ConverterParameter>
</object>
Utilisation d'attributs XAML
<object property="converterParameter" />
Valeurs XAML
converterParameter
Valeur du type attendu par le convertisseur, qui peut être un élément objet ou une chaîne en fonction de la définition et des fonctionnalités XAML du type de propriété utilisé et de l’implémentation du convertisseur. Le convertisseur prend ce type par le biais du parameter
paramètre tel que défini par ses implémentations et ConvertBack ses Convert implémentations.