14 lines
502 B
C#
14 lines
502 B
C#
using Windows.Foundation;
|
|
using Windows.Win32.Foundation;
|
|
|
|
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
internal static class RECTExtensions
|
|
{
|
|
internal static Windows.Foundation.Rect ToRect(this RECT rect)
|
|
{
|
|
if (rect.right - rect.left < 0 || rect.bottom - rect.top < 0) return new Windows.Foundation.Rect(rect.left, rect.top, 0, 0);
|
|
return new Windows.Foundation.Rect(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
|
|
}
|
|
}
|
|
} |