怎样在C++中取得WPF窗体的句柄
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在C++中取得WPF窗体的句柄相关的知识,希望对你有一定的参考价值。
参考技术A var helper = new WindowInteropHelper(win); helper.Handle你的采纳是我前进的动力,还有不懂的地方,请继续“追问”。
如你还有别的问题,可另外向我求助;答题不易,互相理解,...本回答被提问者和网友采纳
获取当前进程(程序)主窗体句柄并设置wpf的父窗体为此句柄
有时候在c++调用wpf控件的时候,wpf控件想自己显示窗体,但需要设置owner属性。迂回解决办法是设置wpf的window窗体的父窗体为进程的句柄。
1.获取当前进程id
int id = Process.GetCurrentProcess().Id;
2.根据进程id获取进程主句柄
public static class ProcessHelper { private static class Win32 { internal const uint GwOwner = 4; internal delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam); [DllImport("User32.dll", CharSet = CharSet.Auto)] internal static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam); [DllImport("User32.dll", CharSet = CharSet.Auto)] internal static extern int GetWindowThreadProcessId(IntPtr hWnd, out IntPtr lpdwProcessId); [DllImport("User32.dll", CharSet = CharSet.Auto)] internal static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd); [DllImport("User32.dll", CharSet = CharSet.Auto)] internal static extern bool IsWindowVisible(IntPtr hWnd); } public static IntPtr GetProcessHandle(int processId) { IntPtr processPtr = IntPtr.Zero; Win32.EnumWindows((hWnd, lParam) => { IntPtr pid; Win32.GetWindowThreadProcessId(hWnd, out pid); if (pid == lParam && Win32.IsWindowVisible(hWnd) && Win32.GetWindow(hWnd, Win32.GwOwner) == IntPtr.Zero) { processPtr = hWnd; return false; } return true; }, new IntPtr(processId)); return processPtr; } }
3.设置wpf的window的父窗体为当前进程主窗口句柄,完整代码如下:
int id = Process.GetCurrentProcess().Id; IntPtr mainPtr = ProcessHelper.GetProcessHandle(id); var win = new Window(); new WindowInteropHelper(win) { Owner = mainPtr }; win.Show();
感谢阅读。
以上是关于怎样在C++中取得WPF窗体的句柄的主要内容,如果未能解决你的问题,请参考以下文章
WPF的控件没有句柄,但是有啥其他间接方法获得WPF控件的句柄啊。
WPF的控件没有句柄,但是有啥其他间接方法获得WPF控件的句柄啊。