From 2fe412e2a469df6e0c0ebb5871c56945683f865d Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Mon, 1 May 2023 16:54:33 -0400 Subject: [PATCH] Expose window handle --- WindowInformation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WindowInformation.cs b/WindowInformation.cs index a61db61..b5dde77 100644 --- a/WindowInformation.cs +++ b/WindowInformation.cs @@ -4,7 +4,7 @@ namespace ChrisKaczor.Wpf.Windows; public class WindowInformation { - private nint Handle { get; } + public nint Handle { get; } public Rectangle Location { get; } public WindowInformation(nint handle)