如何在 C# 中将控制台应用程序窗口置于前面(尤其是在运行 Visual Studio 调试器时)?
yoyoyoyosef
问问题
16241 次
3 回答
17
这很hacky,很可怕,但它对我有用(感谢pinvoke.net!):
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;
public class Test
{
[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 static void Main()
{
string originalTitle = Console.Title;
string uniqueTitle = Guid.NewGuid().ToString();
Console.Title = uniqueTitle;
Thread.Sleep(50);
IntPtr handle = FindWindowByCaption(IntPtr.Zero, uniqueTitle);
if (handle == IntPtr.Zero)
{
Console.WriteLine("Oops, cant find main window.");
return;
}
Console.Title = originalTitle;
while (true)
{
Thread.Sleep(3000);
Console.WriteLine(SetForegroundWindow(handle));
}
}
}
于 2008-10-17T19:40:48.173 回答
16
这就是我会做的。
[DllImport("kernel32.dll", ExactSpelling = true)]
public static extern IntPtr GetConsoleWindow();
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SetForegroundWindow(IntPtr hWnd);
public void BringConsoleToFront()
{
SetForegroundWindow(GetConsoleWindow());
}
于 2012-08-22T04:36:51.757 回答
-4
获取两个监视器(至少)并在辅助监视器中打开 VisualStudio。当您从 VisualStudio 中运行您的应用程序时,它将默认在主监视器上启动。由于它是最后一个打开的应用程序,它从顶部开始,切换到 VisualStudio 不会影响它。无论如何对我有用。
如果您还没有第二台显示器,恕我直言,您应该这样做。
于 2008-10-17T20:01:31.987 回答