I have the following class declared:
public partial class MainWindow : Window
And I need to get the actual handle of the window once the window has one.
How can I do that and where should I put the query function.
What I tried so far was:
IntPtr hwnd = new WindowInteropHelper(this).Handle;
But the handle I get back is 0, which might be because it was planted in OnInitialized - maybe the window is not ready yet at that stage.
And, yes - it is connected via WPF, thank you for pointing it out!
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…