4 interfaces inheriting from IDrawable
Microsoft.Maui (2)
Core\IWindowOverlay.cs (1)
8 public interface IWindowOverlay : IDrawable
Core\IWindowOverlayElement.cs (1)
8 public interface IWindowOverlayElement : IDrawable
Microsoft.Maui.Graphics (2)
IImage.cs (1)
14 public interface IImage : IDrawable, IDisposable
IPdfPage.cs (1)
7 public interface IPdfPage : IDrawable, IDisposable
2 implementations of IDrawable
Microsoft.Maui (2)
Graphics\ShapeDrawable.cs (1)
6 public class ShapeDrawable : IDrawable
WindowOverlay\WindowOverlay.cs (1)
20 public partial class WindowOverlay : IWindowOverlay, IDrawable
10 references to IDrawable
Microsoft.Maui (1)
Core\IGraphicsView.cs (1)
13 IDrawable Drawable { get; }
Microsoft.Maui.Controls (7)
GraphicsView\GraphicsView.cs (3)
19 BindableProperty.Create(nameof(Drawable), typeof(IDrawable), typeof(GraphicsView), null); 21 public IDrawable Drawable 24 get { return (IDrawable)GetValue(DrawableProperty); }
Handlers\Shapes\Path\PathHandler.iOS.cs (1)
22 IDrawable drawable = handler.PlatformView?.Drawable;
Handlers\Shapes\Polygon\PolygonHandler.iOS.cs (1)
37 IDrawable drawable = handler.PlatformView?.Drawable;
Handlers\Shapes\Polyline\PolylineHandler.iOS.cs (1)
37 IDrawable drawable = handler.PlatformView?.Drawable;
Platform\ShapeExtensions.cs (1)
8 internal static WindingMode GetPathWindingMode(this IDrawable drawable, IShapeView shapeView)
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (2)
src\Graphics\src\Graphics\Platforms\Windows\PlatformGraphicsView.cs (2)
29 private IDrawable _drawable; 45 public IDrawable Drawable