DependencyObject.SetValueBase(DependencyProperty, Object) 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.
Attribue la valeur de DependencyProperty au Object spécifié, en ignorant SetValue(DependencyProperty, Object).
public:
void SetValueBase(System::Workflow::ComponentModel::DependencyProperty ^ dependencyProperty, System::Object ^ value);
public void SetValueBase (System.Workflow.ComponentModel.DependencyProperty dependencyProperty, object value);
member this.SetValueBase : System.Workflow.ComponentModel.DependencyProperty * obj -> unit
Public Sub SetValueBase (dependencyProperty As DependencyProperty, value As Object)
Paramètres
- dependencyProperty
- DependencyProperty
DependencyProperty à attribuer à Object.
- value
- Object
Object qui devient la valeur du DependencyProperty.
Exceptions
dependencyProperty
est une référence Null (Nothing
en Visual Basic).
Remarques
Cette méthode est utile à l'intérieur de l'implémentation de substitution SetValue. Le code de substitution SetValue suit généralement une logique personnalisée avant d'appeler la méthode SetValueBase.
Pour définir une substitution SetValue, PropertyMetadata peut être utilisé dans les appels DependencyProperty, Register ou RegisterAttached.