14 references to Top
Microsoft.Maui.Controls (5)
Shapes\Shape.cs (5)
293
bool requireAdjustY = viewBounds.Top > pathBounds.
Top
;
299
(float)(pathBounds.Y + viewBounds.Top - pathBounds.
Top
));
326
(float)(viewBounds.Top - heightScale * pathBounds.
Top
));
337
(float)(viewBounds.Top - minScale * pathBounds.
Top
+
348
(float)(viewBounds.Top - maxScale * pathBounds.
Top
));
Microsoft.Maui.Graphics (5)
RectF.cs (5)
93
return (x >= Left) && (x < Right) && (y >=
Top
) && (y < Bottom);
98
return !((Left >= r.Right) || (Right <= r.Left) || (
Top
>= r.Bottom) || (Bottom <= r.
Top
));
108
return FromLTRB(Math.Min(r1.Left, r2.Left), Math.Min(r1.
Top
, r2.
Top
), Math.Max(r1.Right, r2.Right), Math.Max(r1.Bottom, r2.Bottom));
Microsoft.Maui.Graphics.Skia (3)
SKGraphicsExtensions.cs (1)
66
return new SKRect(target.Left, target.
Top
, target.Right, target.Bottom);
SkiaCanvas.cs (1)
294
radius = GeometryUtil.GetDistance(rectangle.Left, rectangle.
Top
, rectangle.Right, rectangle.Bottom);
SkiaImage.cs (1)
149
canvas.DrawImage(this, dirtyRect.Left, dirtyRect.
Top
, MathF.Round(dirtyRect.Width), MathF.Round(dirtyRect.Height));
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (1)
src\Graphics\src\Graphics\Platforms\Windows\PlatformImage.cs (1)
140
canvas.DrawImage(this, dirtyRect.Left, dirtyRect.
Top
, Math.Abs(dirtyRect.Width), Math.Abs(dirtyRect.Height));