3 implementations of SetIsLoading
Microsoft.Maui.Controls (3)
Button\Button.cs (1)
440 void IImageController.SetIsLoading(bool isLoading)
Image\Image.cs (1)
95 void IImageController.SetIsLoading(bool isLoading) =>
ImageButton\ImageButton.cs (1)
175 public void SetIsLoading(bool isLoading) => SetValue(IsLoadingPropertyKey, isLoading);
4 references to SetIsLoading
Microsoft.Maui.Controls (1)
ImageButton\ImageButton.cs (1)
264 ((IImageController)this)?.SetIsLoading(isLoading);
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\ImageElementManager.cs (2)
198 imageController?.SetIsLoading(true); 247 imageController?.SetIsLoading(false);
iOS\Renderers\ImageRenderer.cs (1)
92 ((IImageController)Element)?.SetIsLoading(false);