C# Class System.Windows.Parameter

Represents the base class for declarative parameters.
Datei anzeigen Open project: nikhilk/silverlightfx Class Usage Examples

Public Methods

Method Description
GetValue ( ) : object

Gets the value of the parameter.

Protected Methods

Method 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

Method Description
SetOwner ( ParameterCollection owner ) : void

Method Details

Activate() protected abstract method

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

Deactivate() protected abstract method

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

GetValue() public abstract method

Gets the value of the parameter.
public abstract GetValue ( ) : object
return object

OnValueChanged() protected method

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