mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
19 lines
406 B
C#
19 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Windows.Foundation;
|
|
using Windows.Graphics;
|
|
|
|
namespace BetterLyrics.WinUI3.Helper
|
|
{
|
|
public static class PointHelper
|
|
{
|
|
public static PointInt32 ToPointInt32(this Point point)
|
|
{
|
|
return new PointInt32((int)point.X, (int)point.Y);
|
|
}
|
|
}
|
|
}
|