3 implementations of IsAnimationPlaying
Microsoft.Maui.Controls (3)
Button\Button.cs (1)
434
bool IImageElement.
IsAnimationPlaying
=> false;
Image\Image.cs (1)
57
public bool
IsAnimationPlaying
ImageButton\ImageButton.cs (1)
233
bool IImageElement.
IsAnimationPlaying
4 references to IsAnimationPlaying
Microsoft.Maui.Controls (1)
ImageElement.cs (1)
24
internal static readonly BindableProperty IsAnimationPlayingProperty = BindableProperty.Create(nameof(IImageElement.
IsAnimationPlaying
), typeof(bool), typeof(IImageElement), false);
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\ImageElementManager.cs (3)
64
if (imageView.Animation == null && imageElement.
IsAnimationPlaying
)
66
if (imageView.Animation != null && imageElement.
IsAnimationPlaying
&& !imageView.IsAnimating)
68
else if (imageView.Animation != null && !imageElement.
IsAnimationPlaying
&& imageView.IsAnimating)