我试图从我的主应用程序的子窗体开始和.exe,但问题是,当我打开另一个.exe并完成它的工作(扫描指纹)并退出,我的应用程序被最小化,所以我尝试这个:
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool SetForegroundWindow(IntPtr hWnd);
void method {
..........more code...........
using (Process proc = new Process())
{
proc.StartInfo.FileName = "WindowsFormsApplication3.exe";
proc.Start();
SetForegroundWindow(proc.MainWindowHandle);
}
............code here..............
}
但它不起作用,我的主要应用程序失去了焦点,我找到了许多解决方案,但其中任何一个都适合我,另一个.exe是我正在做的应用程序。
答案 0 :(得分:1)
如果你想激活指纹窗口,你的代码是正确的!但是在之前添加一个等待的SetForegroundWindow ......就像这样:
while (string.IsNullOrEmpty(proc.MainWindowTitle))
{
System.Threading.Thread.Sleep(100);
proc.Refresh();
}
并且,如果您想激活调用者表单(主应用程序),您不需要SetForegroundWindow!你可以写:
while (string.IsNullOrEmpty(proc.MainWindowTitle))
{
System.Threading.Thread.Sleep(100);
proc.Refresh();
}
// Then active caller form...
this.Activate();
无论如何,你需要等到指纹窗口显示......