Effect Class

Definition

A collection of styles and properties that can be added to an element at run time.

public abstract class Effect
type Effect = class
Inheritance
Effect
Derived

Remarks

Effects are suitable when the developer needs to use platform-specific features to achieve the desired effect. Developers should consider using Behavior if they do not need platform-specific implentations to achieve their desired result.

Properties

Element

Gets the element to which the style is attached.

IsAttached

Gets a value that tells whether the effect is attached to an element.

ResolveId

Gets the ID that is used to resolve this effect at runtime.

Methods

OnAttached()

Method that is called after the effect is attached and made valid.

OnDetached()

Method that is called after the effect is detached and invalidated.

Resolve(String)

Returns an Effect for the specified name, which is of the form ResolutionGroupName.ExportEffect.

Applies to