IXRSineEase (Compact 7)

3/12/2014

This class includes an easing function that helps create animations that accelerate or decelerate using a sine formula.

Syntax

class IXRSineEase : public IXREasingFunctionBase

Inheritance Hierarchy

IXRDependencyObject

    IXREasingFunctionBase

        IXRSineEase

Methods

This class provides no new methods. All of its methods are inherited from IXREasingFunctionBase.

Thread Safety

Members of this class are thread safe if you previously called IXRApplication::CreateHostFromXaml and supplied it with an XRWindowCreateParams structure that has AllowsMultipleThreadAccess set to true.

Remarks

You can control whether the animation accelerates, decelerates, or both, by passing one of the XREasingMode enumerated values to the inherited IXREasingFunctionBase::SetEasingMode method. The following graphs demonstrate the different values of the easing mode, where f(t) represents the animation progress and t represents time.

Easing function XREasingMode_EaseIn XREasingMode_EaseOut XREasingMode_EaseInOut

IXRSineEase

Gg159850.d15929e9-0e09-44e3-a400-2da123738975(en-us,WinEmbedded.70).jpg
Gg159850.223da2a3-45ba-4c96-98b7-b178cd5b7c42(en-us,WinEmbedded.70).jpg
Gg159850.134f392f-2bc7-42af-84f4-4f6f1c76fec8(en-us,WinEmbedded.70).jpg

When you create a class instance, use an IXRSineEasePtr smart pointer instead of a raw interface pointer. For more information, see XRPtr<Interface>.

You can apply this easing function to an animation in Microsoft Silverlight 3 XAML. For information about the differences between XAML in Silverlight for Windows Embedded and Silverlight 3, see Differences Between Microsoft Silverlight 3 and Silverlight for Windows Embedded. For more information about how to define this element in the source XAML for your application, see the SineEase Class on MSDN.

There are several other easing functions besides IXRSineEase that you can explore using the following sample:

Run the sample

.NET Framework Equivalent

System.Windows.Media.Animation.SineEase

Requirements

Header

XamlRuntime.h

sysgen

SYSGEN_XAML_RUNTIME

See Also

Reference

Classes for Animation Storyboards
IXREasingFunctionBase::SetEasingMode