Archive for the 'Classes' Category
Tue, Nov 25th, 2008
This static class provides all easing equations, As a flasher I used Robert Penner’s Equations and I want to thank him.
read comments (0)
Tue, Nov 25th, 2008
Lists all states Tween
| name | Description |
|---|---|
| Tweening |
It is the state of tween when the animation is being.
|
| Reversing |
It is the state of tween when the animation back is being.
|
| Stopped |
It is the state of tween when no animation is being or when animation back is completed.
|
| Paused |
It is the state of tween when the animation is paused.
|
| RPaused |
It is the state of tween when the animation back is paused.
|
| Completed |
It is the state of tween when the animation has been completed.
|
read comments (0)
Tue, Nov 25th, 2008
This static class contains all xaml properties that can be tweened for shape element or UIElement.
| Name | Description | |
|---|---|---|
| Angle |
Applies a Tween on the property AngleY of an object in degrees.
|
|
| AngleX |
Applies a Tween on the property AngleX of an object in degrees.
|
|
| AngleY |
Applies a Tween on the property AngleX of an object in degrees.
|
|
| Fill |
Applies a Tween on the Fill color of Shapes. example : Color.FromArgb(255, 20, 150, 68)
|
|
| Height |
Applies a Tween on the property Height of an object in pixels.
|
|
| Left | Applies a Tween on the property Canvas.Left an object in pixels, this value is relative to the origin of the canvas container. | |
| Opacity |
Applies a Tween on the opacity of an object, values must be between 0 and 1.
|
|
| ScaleX |
Applies a Tween on the property ScaleX of an object in percent, values must be between 0 and 1.
|
|
| ScaleY |
Applies a Tween on the property ScaleY of an object in percent, values must be between 0 and 1.
|
|
| Stroke |
Applies a Tween on the Stroke color of Shapes. example of value : Color.FromArgb(255, 20, 150, 68)
|
|
| Top |
Applies a Tween on the property Canvas.Top an object in pixels, this value is relative to the origin of the canvas container.
|
|
| Width |
Applies a Tween on the property Width of an object in pixels.
|
|
| X |
Applies a Tween on the property X of an object in pixels,this value is relative to its original position regardless of the container.
|
|
| Y |
Applies a Tween on the property Y of an object in pixels,this value is relative to its original position regardless of the container.
|
read comments (0)
