Partager via


BindableProperty.CreateAttachedReadOnly Méthode

Définition

Crée une instance de la classe BindableProperty pour des propriétés jointes en lecture seule.

public static Microsoft.Maui.Controls.BindablePropertyKey CreateAttachedReadOnly (string propertyName, Type returnType, Type declaringType, object defaultValue, Microsoft.Maui.Controls.BindingMode defaultBindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate validateValue = default, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate propertyChanged = default, Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate propertyChanging = default, Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate coerceValue = default, Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate defaultValueCreator = default);
static member CreateAttachedReadOnly : string * Type * Type * obj * Microsoft.Maui.Controls.BindingMode * Microsoft.Maui.Controls.BindableProperty.ValidateValueDelegate * Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangedDelegate * Microsoft.Maui.Controls.BindableProperty.BindingPropertyChangingDelegate * Microsoft.Maui.Controls.BindableProperty.CoerceValueDelegate * Microsoft.Maui.Controls.BindableProperty.CreateDefaultValueDelegate -> Microsoft.Maui.Controls.BindablePropertyKey
Public Shared Function CreateAttachedReadOnly (propertyName As String, returnType As Type, declaringType As Type, defaultValue As Object, Optional defaultBindingMode As BindingMode = Microsoft.Maui.Controls.BindingMode.OneWayToSource, Optional validateValue As BindableProperty.ValidateValueDelegate = Nothing, Optional propertyChanged As BindableProperty.BindingPropertyChangedDelegate = Nothing, Optional propertyChanging As BindableProperty.BindingPropertyChangingDelegate = Nothing, Optional coerceValue As BindableProperty.CoerceValueDelegate = Nothing, Optional defaultValueCreator As BindableProperty.CreateDefaultValueDelegate = Nothing) As BindablePropertyKey

Paramètres

propertyName
String

Nom de BindableProperty.

returnType
Type

Type de la propriété.

declaringType
Type

Type de l’objet de déclaration.

defaultValue
Object

Valeur par défaut de la propriété.

defaultBindingMode
BindingMode

BindingMode à utiliser sur SetBinding() si aucun BindingMode n’est donné. Ce paramètre est optionnel. La valeur par défaut est BindingMode.OneWay.

validateValue
BindableProperty.ValidateValueDelegate

Délégué à exécuter quand une valeur est définie. Ce paramètre est optionnel. La valeur par défaut est null.

propertyChanged
BindableProperty.BindingPropertyChangedDelegate

Délégué à exécuter quand une valeur a changé. Ce paramètre est optionnel. La valeur par défaut est null.

propertyChanging
BindableProperty.BindingPropertyChangingDelegate

Délégué à exécuter quand la valeur change. Ce paramètre est optionnel. La valeur par défaut est null.

coerceValue
BindableProperty.CoerceValueDelegate

Délégué utilisé pour forcer la plage d’une valeur. Ce paramètre est optionnel. La valeur par défaut est null.

defaultValueCreator
BindableProperty.CreateDefaultValueDelegate

Fonction utilisée pour initialiser la valeur par défaut des types référence.

Retours

BindableProperty joint en lecture seule nouvellement créé.

Remarques

Les propriétés jointes sont des propriétés pouvant être liées à un objet autre que leur parent. Souvent, ils sont utilisés pour les éléments enfants dans les tables et les grilles, où les données relatives à l’emplacement d’un élément sont conservées par son parent, mais doivent être accessibles à partir de l’élément enfant lui-même.

S’applique à