1 instantiation of Info
Microsoft.Maui.Controls (1)
AnimationExtensions.cs (1)
267
var info = new
Info
{ Rate = rate, Length = length, Easing = easing ?? Easing.Linear, AnimationManager = animationManager };
6 references to Info
Microsoft.Maui.Controls (6)
AnimationExtensions.cs (6)
48
static readonly Dictionary<AnimatableKey,
Info
> s_animations;
60
s_animations = new Dictionary<AnimatableKey,
Info
>();
231
Info
info = s_animations[key];
267
var
info = new Info { Rate = rate, Length = length, Easing = easing ?? Easing.Linear, AnimationManager = animationManager };
328
if (tweener != null && s_animations.TryGetValue(tweener.Handle, out
Info
info))
368
if (o is Tweener tweener && s_animations.TryGetValue(tweener.Handle, out
Info
info) && info.Owner.TryGetTarget(out IAnimatable owner))