任何人都可以帮忙解决如何处理" SwitchToThisWindow"在从rundll32.exe的过程?感谢。
如下图所示:“Internet属性”位于“Rundll32”下,我有用于rundll32.exe的PID 3368,并使用下面的代码将进程置于顶部。但无法将“Internet Properties”切换到顶部。
Process process = Process.GetProcessById(pid);
SwitchToThisWindow(process.MainWindowHandle, true);
private static extern void SwitchToThisWindow(IntPtr hWnd, bool turnon);