PrsUtils.cs 221 B

12345678910
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Interop;
  4. namespace PRSDesktop;
  5. public static class PrsUtils
  6. {
  7. public static IntPtr GetWindowHandle(Window window) => new WindowInteropHelper(window).Handle;
  8. }