如何在 C# 中从控制台窗口返回焦点

本文关键字:控制台 窗口 返回 焦点 | 更新日期: 2023-09-27 17:55:34

我有一个C#控制台应用程序(A),它用黑色的Windows控制台打开。有时在启动时,它会从另一个需要焦点的程序(B)中窃取焦点。

问题:我怎样才能把注意力从A.exe放回B.exe

A -> Focus -> B


详:
  • 程序B不是我的,我对此无能为力。它有一个 GUI、多个窗口,其中一个需要焦点(它可能是一个模态对话框窗口)。
  • 程序 A 不需要任何焦点,也不以任何方式与程序 B 交互。
  • 程序A通过启动快捷方式启动,基本上在后台运行(它已发布但仍在开发中,这就是控制台窗口的原因)
  • 我有几分钟/最多几分钟的时间来检查并重新关注。

如何在 C# 中从控制台窗口返回焦点

// this should do the trick....
[DllImport("user32.dll")]
public static extern bool ShowWindowAsync(HandleRef hWnd, int nCmdShow);
[DllImport("user32.dll")]
public static extern bool SetForegroundWindow(IntPtr WindowHandle);
public const int SW_RESTORE = 9;
private void FocusProcess(string procName)
{
    Process[] objProcesses = System.Diagnostics.Process.GetProcessesByName(procName);
    if (objProcesses.Length > 0)
    {
        IntPtr hWnd = IntPtr.Zero;
        hWnd = objProcesses[0].MainWindowHandle;
        ShowWindowAsync(new HandleRef(null,hWnd), SW_RESTORE);
        SetForegroundWindow(objProcesses[0].MainWindowHandle);
    }
}

若要为当前正在运行的 C# 控制台应用执行此操作...

[DllImport("user32.dll")]
public static extern bool ShowWindowAsync(HandleRef hWnd, int nCmdShow);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
static extern IntPtr FindWindowByCaption(IntPtr zeroOnly, string lpWindowName);
public const int SW_RESTORE = 9;
static void FocusMe()
{
    string originalTitle = Console.Title;
    string uniqueTitle = Guid.NewGuid().ToString();
    Console.Title = uniqueTitle;
    Thread.Sleep(50);
    IntPtr handle = FindWindowByCaption(IntPtr.Zero, uniqueTitle);
    Console.Title = originalTitle;
    ShowWindowAsync(new HandleRef(null, handle), SW_RESTORE);
    SetForegroundWindow(handle);
}