How to get the hWnd of Window instance?
Asked Answered
J

2

63

My WPF application has more than one window, I need to be able to get the hWnd of each Window instance so that I can use them in Win32 API calls.

Example of what I would like to do:

Window myCurrentWindow = Window.GetWindow(this);
IntPtr myhWnd = myCurrentWindow.hWnd; // Except this property doesn't exist.

What's the best way to do this?

Jolenejolenta answered 20/5, 2012 at 16:48 Comment(2)
possible duplicate of Is it possible to get the Hwnd of a WPF Popup control?Vulnerary
@HansPassant: The other question concerned popup controls, not actual windows. (Yes, this question was also indirectly answered within it, but it is not a duplicate.)Ra
R
93

WindowInteropHelper is your friend. It has a constructor that accepts a Window parameter, and a Handle property that returns its window handle.

Window window = Window.GetWindow(this);
var wih = new WindowInteropHelper(window);
IntPtr hWnd = wih.Handle;
Ra answered 20/5, 2012 at 17:2 Comment(0)
D
24

Extending on Douglas's answer, if the Window has not been shown yet, it might not have an HWND. You can force one to be created before the window is shown using EnsureHandle():

var window = Window.GetWindow(element);

IntPtr hWnd = new WindowInteropHelper(window).EnsureHandle();

Note that Window.GeWindow can return null, so you should really test that too.

Dustin answered 6/10, 2016 at 12:18 Comment(1)
I feel like the checks would rarely be needed, generally you'd just place your code where you're sure the window handle exists. The most obvious would be the Loaded eventJackfruit

© 2022 - 2024 — McMap. All rights reserved.