AnimationExtensions.Animate Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
Animate(IAnimatable, String, Animation, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>) |
Establece los parámetros especificados e inicia la animación. |
Animate(IAnimatable, String, Action<Double>, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>) |
Establece los parámetros especificados e inicia la animación. |
Animate(IAnimatable, String, Action<Double>, Double, Double, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>) |
Establece los parámetros especificados e inicia la animación. |
Animate<T>(IAnimatable, String, Func<Double,T>, Action<T>, UInt32, UInt32, Easing, Action<T,Boolean>, Func<Boolean>, IAnimationManager) |
Establece los parámetros especificados e inicia la animación. |
Animate(IAnimatable, String, Animation, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>)
Establece los parámetros especificados e inicia la animación.
public static void Animate (this Microsoft.Maui.Controls.IAnimatable self, string name, Microsoft.Maui.Controls.Animation animation, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = default, Action<double,bool> finished = default, Func<bool> repeat = default);
static member Animate : Microsoft.Maui.Controls.IAnimatable * string * Microsoft.Maui.Controls.Animation * uint32 * uint32 * Microsoft.Maui.Easing * Action<double, bool> * Func<bool> -> unit
<Extension()>
Public Sub Animate (self As IAnimatable, name As String, animation As Animation, Optional rate As UInteger = 16, Optional length As UInteger = 250, Optional easing As Easing = Nothing, Optional finished As Action(Of Double, Boolean) = Nothing, Optional repeat As Func(Of Boolean) = Nothing)
Parámetros
- self
- IAnimatable
Objeto en el que se ejecutará este método.
- name
- String
Una clave de animación que debería ser única entre sus animaciones del mismo nivel y primarias durante el tiempo que dure la animación.
- animation
- Animation
La animación que se va a ejecutar.
- rate
- UInt32
Tiempo, en milisegundos, entre fotogramas.
- length
- UInt32
Número de milisegundos durante los que se va a interpolar la animación.
- easing
- Easing
Función de aceleración que se va a usar para realizar la transición de entrada, de salida o de entrada y salida de la animación.
Se aplica a
Animate(IAnimatable, String, Action<Double>, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>)
Establece los parámetros especificados e inicia la animación.
public static void Animate (this Microsoft.Maui.Controls.IAnimatable self, string name, Action<double> callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = default, Action<double,bool> finished = default, Func<bool> repeat = default);
static member Animate : Microsoft.Maui.Controls.IAnimatable * string * Action<double> * uint32 * uint32 * Microsoft.Maui.Easing * Action<double, bool> * Func<bool> -> unit
<Extension()>
Public Sub Animate (self As IAnimatable, name As String, callback As Action(Of Double), Optional rate As UInteger = 16, Optional length As UInteger = 250, Optional easing As Easing = Nothing, Optional finished As Action(Of Double, Boolean) = Nothing, Optional repeat As Func(Of Boolean) = Nothing)
Parámetros
- self
- IAnimatable
Objeto en el que se ejecutará este método.
- name
- String
Una clave de animación que debería ser única entre sus animaciones del mismo nivel y primarias durante el tiempo que dure la animación.
- rate
- UInt32
Tiempo, en milisegundos, entre fotogramas.
- length
- UInt32
Número de milisegundos durante los que se va a interpolar la animación.
- easing
- Easing
Función de aceleración que se va a usar para realizar la transición de entrada, de salida o de entrada y salida de la animación.
Se aplica a
Animate(IAnimatable, String, Action<Double>, Double, Double, UInt32, UInt32, Easing, Action<Double,Boolean>, Func<Boolean>)
Establece los parámetros especificados e inicia la animación.
public static void Animate (this Microsoft.Maui.Controls.IAnimatable self, string name, Action<double> callback, double start, double end, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = default, Action<double,bool> finished = default, Func<bool> repeat = default);
static member Animate : Microsoft.Maui.Controls.IAnimatable * string * Action<double> * double * double * uint32 * uint32 * Microsoft.Maui.Easing * Action<double, bool> * Func<bool> -> unit
<Extension()>
Public Sub Animate (self As IAnimatable, name As String, callback As Action(Of Double), start As Double, end As Double, Optional rate As UInteger = 16, Optional length As UInteger = 250, Optional easing As Easing = Nothing, Optional finished As Action(Of Double, Boolean) = Nothing, Optional repeat As Func(Of Boolean) = Nothing)
Parámetros
- self
- IAnimatable
Objeto en el que se ejecutará este método.
- name
- String
Una clave de animación que debería ser única entre sus animaciones del mismo nivel y primarias durante el tiempo que dure la animación.
- start
- Double
Fracción de la animación actual en la que se va a iniciar la animación.
- end
- Double
Fracción de la animación actual en la que se va a detener la animación.
- rate
- UInt32
Tiempo, en milisegundos, entre fotogramas.
- length
- UInt32
Número de milisegundos durante los que se va a interpolar la animación.
- easing
- Easing
Función de aceleración que se va a usar para realizar la transición de entrada, de salida o de entrada y salida de la animación.
Se aplica a
Animate<T>(IAnimatable, String, Func<Double,T>, Action<T>, UInt32, UInt32, Easing, Action<T,Boolean>, Func<Boolean>, IAnimationManager)
Establece los parámetros especificados e inicia la animación.
public static void Animate<T> (this Microsoft.Maui.Controls.IAnimatable self, string name, Func<double,T> transform, Action<T> callback, uint rate = 16, uint length = 250, Microsoft.Maui.Easing easing = default, Action<T,bool> finished = default, Func<bool> repeat = default, Microsoft.Maui.Animations.IAnimationManager animationManager = default);
static member Animate : Microsoft.Maui.Controls.IAnimatable * string * Func<double, 'T> * Action<'T> * uint32 * uint32 * Microsoft.Maui.Easing * Action<'T, bool> * Func<bool> * Microsoft.Maui.Animations.IAnimationManager -> unit
<Extension()>
Public Sub Animate(Of T) (self As IAnimatable, name As String, transform As Func(Of Double, T), callback As Action(Of T), Optional rate As UInteger = 16, Optional length As UInteger = 250, Optional easing As Easing = Nothing, Optional finished As Action(Of T, Boolean) = Nothing, Optional repeat As Func(Of Boolean) = Nothing, Optional animationManager As IAnimationManager = Nothing)
Parámetros de tipo
- T
Parámetros
- self
- IAnimatable
Objeto en el que se ejecutará este método.
- name
- String
Una clave de animación que debería ser única entre sus animaciones del mismo nivel y primarias durante el tiempo que dure la animación.
Una función que asigna los tiempos de animación a nuevos valores de tiempo.
- callback
- Action<T>
Una acción a la que se llama con los valores de animación sucesivos.
- rate
- UInt32
Tiempo, en milisegundos, entre fotogramas.
- length
- UInt32
Número de milisegundos durante los que se va a interpolar la animación.
- easing
- Easing
Función de aceleración que se va a usar para realizar la transición de entrada, de salida o de entrada y salida de la animación.
- animationManager
- IAnimationManager