C# Class System.Windows.Parameter

Represents the base class for declarative parameters.
Afficher le fichier Open project: nikhilk/silverlightfx Class Usage Examples

Méthodes publiques

Méthode Description
GetValue ( ) : object

Gets the value of the parameter.

Méthodes protégées

Méthode Description
Activate ( ) : void

Activates the parameter with the specified element as visual tree context.

Deactivate ( ) : void

Deactivates a parameter, when it is no longer in use.

OnValueChanged ( ) : void

Notifies that this parameter's value has changed.

Private Methods

Méthode Description
SetOwner ( ParameterCollection owner ) : void

Method Details

Activate() protected abstract méthode

Activates the parameter with the specified element as visual tree context.
protected abstract Activate ( ) : void
Résultat void

Deactivate() protected abstract méthode

Deactivates a parameter, when it is no longer in use.
protected abstract Deactivate ( ) : void
Résultat void

GetValue() public abstract méthode

Gets the value of the parameter.
public abstract GetValue ( ) : object
Résultat object

OnValueChanged() protected méthode

Notifies that this parameter's value has changed.
protected OnValueChanged ( ) : void
Résultat void