我正在尝试编写一些自动化来打开一系列窗口(非隐藏,非恶意),我不希望他们在打开时窃取焦点。问题是当每个窗口打开时,它会窃取焦点,阻止我在后台运行时工作。 这是我在循环中执行以打开各种窗口的代码:
using (Process proc = new Process())
{
proc.StartInfo.FileName = filename;
proc.StartInfo.Arguments = arguments;
proc.Start();
Thread.Sleep(1000);
if (!proc.HasExited)
{
proc.Kill();
}
}
如何在没有焦点的情况下打开这些内容,以便在自动运行时我可以做其他事情?
附录
执行上述代码的程序是一个简单的控制台应用程序。我开始的流程是GUI应用程序。出于测试/设计目的,我目前正尝试使用具有不同参数的Internet Explorer(iexplore.exe
)的重复实例。
我将运行此功能,并在后台运行时继续执行其他无关的工作。我也不希望焦点返回到父应用程序。基本上,当我到达我的办公桌时,我将运行此.exe
,并切换到其他窗口进行其他工作,忽略原始程序及其子进程,直到它完成。
答案 0 :(得分:7)
这是可能的,但只能通过pinvoke,不幸的是需要大约70行代码:
[StructLayout(LayoutKind.Sequential)]
struct STARTUPINFO
{
public Int32 cb;
public string lpReserved;
public string lpDesktop;
public string lpTitle;
public Int32 dwX;
public Int32 dwY;
public Int32 dwXSize;
public Int32 dwYSize;
public Int32 dwXCountChars;
public Int32 dwYCountChars;
public Int32 dwFillAttribute;
public Int32 dwFlags;
public Int16 wShowWindow;
public Int16 cbReserved2;
public IntPtr lpReserved2;
public IntPtr hStdInput;
public IntPtr hStdOutput;
public IntPtr hStdError;
}
[StructLayout(LayoutKind.Sequential)]
internal struct PROCESS_INFORMATION
{
public IntPtr hProcess;
public IntPtr hThread;
public int dwProcessId;
public int dwThreadId;
}
[DllImport("kernel32.dll")]
static extern bool CreateProcess(
string lpApplicationName,
string lpCommandLine,
IntPtr lpProcessAttributes,
IntPtr lpThreadAttributes,
bool bInheritHandles,
uint dwCreationFlags,
IntPtr lpEnvironment,
string lpCurrentDirectory,
[In] ref STARTUPINFO lpStartupInfo,
out PROCESS_INFORMATION lpProcessInformation
);
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool CloseHandle(IntPtr hObject);
const int STARTF_USESHOWWINDOW = 1;
const int SW_SHOWNOACTIVATE = 4;
const int SW_SHOWMINNOACTIVE = 7;
public static void StartProcessNoActivate(string cmdLine)
{
STARTUPINFO si = new STARTUPINFO();
si.cb = Marshal.SizeOf(si);
si.dwFlags = STARTF_USESHOWWINDOW;
si.wShowWindow = SW_SHOWMINNOACTIVE;
PROCESS_INFORMATION pi = new PROCESS_INFORMATION();
CreateProcess(null, cmdLine, IntPtr.Zero, IntPtr.Zero, true,
0, IntPtr.Zero, null, ref si, out pi);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
}
将si.wShowWindow
设置为SW_SHOWNOACTIVATE
以正常显示窗口,但不会窃取焦点,并SW_SHOWMINNOACTIVE
启动应用最小化,再次无需关注焦点。
此处提供了完整的选项列表:http://msdn.microsoft.com/en-us/library/windows/desktop/ms633548(v=vs.85).aspx
答案 1 :(得分:3)
您可以将焦点移至应用
[DllImport("User32")]
private static extern int SetForegroundWindow(IntPtr hwnd);
[DllImportAttribute("User32.DLL")]
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
Process.Start("");
Thread.Sleep(100);
var myWindowHandler = Process.GetCurrentProcess().MainWindowHandle;
ShowWindow(myWindowHandler, 5);
SetForegroundWindow(myWindowHandler);
答案 2 :(得分:1)
解决。
我最终使用的解决方案绕过任何属性或重新分配焦点。由于任务是自动化和独立的,我只是使用Windows任务计划程序来运行应用程序。无论出于何种原因,只要“父”控制台窗口不在焦点上,“子”GUI窗口就会正常打开但不会聚焦 - 允许我在应用程序运行时继续在另一个窗口中工作。
答案 3 :(得分:0)
SetForegroundWindow
也可以在控制台应用中执行此操作。
经过测试的代码:
创建一个简单的类:
public class MyClass
{
[DllImport("user32.dll")]
static extern bool SetForegroundWindow(IntPtr hWnd);
public void doProcess(string filename, string arguments){
using (Process proc = new Process())
{
proc.StartInfo.FileName = filename;
proc.StartInfo.Arguments = arguments;
proc.Start();
SetForegroundWindow(proc.MainWindowHandle);
}
}
}
然后在您的控制台应用的main
方法中:
class Program
{
static void Main(string[] args)
{
MyClass mc = new MyClass();
mc.doProcess("iexplore.exe", "http://www.stackoverflow.com");
Console.ReadKey();
}
}
答案 4 :(得分:-2)
我没有试过这个,但我相信如果你设置proc.StartInfo.WindowStyle = WindowStyle.Minimized应该可以做到这一点。
答案 5 :(得分:-2)
使用Process.StartInfo.CreateNoWindow = true
和Process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
的组合。
使用Process.StartInfo.UseShellExecute = false
并重定向StdIn / StdOut / StdErr也可能值得。
请参阅http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.aspx