Files
NotificationFlyout/src/TheXamlGuy.NotificationFlyout.Common/Helpers/WindowHelper.cs
T
2021-02-15 12:21:59 +00:00

12 lines
338 B
C#

using Microsoft.Windows.Sdk;
using System;
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public class WindowHelper
{
public static IntPtr GetHandle(string windowName) => PInvoke.FindWindow(windowName, null);
public static uint GetDpi(IntPtr handle) => PInvoke.GetDpiForWindow((HWND)handle);
}
}