| 46 | } |
| 47 | |
| 48 | void ResizeWindow(winrt::Microsoft::UI::Xaml::Window window, winrt::Windows::Graphics::SizeInt32 size) |
| 49 | { |
| 50 | auto const dpi = GetDpiForWindow(GetHwnd(window)); |
| 51 | size.Height = ScaleForDpi(size.Height, dpi); |
| 52 | size.Width = ScaleForDpi(size.Width, dpi); |
| 53 | GetAppWindow(window).Resize(size); |
| 54 | } |
| 55 | |
| 56 | MONITORINFO MonitorInfo::GetFromPoint(POINT p) |
| 57 | { |
no test coverage detected