A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

58 lines
1.6 KiB

using Avalonia.Native.Interop;
using JetBrains.Annotations;
namespace Avalonia.Native
{
internal static class Helpers
{
public static Point ToAvaloniaPoint (this AvnPoint pt)
{
return new Point(pt.X, pt.Y);
}
public static PixelPoint ToAvaloniaPixelPoint(this AvnPoint pt)
{
return new PixelPoint((int)pt.X, (int)pt.Y);
}
public static AvnPoint ToAvnPoint (this Point pt)
{
return new AvnPoint { X = pt.X, Y = pt.Y };
}
public static AvnPoint ToAvnPoint(this PixelPoint pt)
{
return new AvnPoint { X = pt.X, Y = pt.Y };
}
public static AvnRect ToAvnRect (this Rect rect)
{
return new AvnRect() { X = rect.X, Y= rect.Y, Height = rect.Height, Width = rect.Width };
}
public static AvnSize ToAvnSize (this Size size)
{
return new AvnSize { Height = size.Height, Width = size.Width };
}
public static IAvnString ToAvnString(this string s)
{
return s != null ? new AvnString(s) : null;
}
public static Size ToAvaloniaSize (this AvnSize size)
{
return new Size(size.Width, size.Height);
}
public static Rect ToAvaloniaRect (this AvnRect rect)
{
return new Rect(rect.X, rect.Y, rect.Width, rect.Height);
}
public static PixelRect ToAvaloniaPixelRect(this AvnRect rect)
{
return new PixelRect((int)rect.X, (int)rect.Y, (int)rect.Width, (int)rect.Height);
}
}
}