17

有没有办法在最小化时将控制台应用程序放在系统托盘中?

4

6 回答 6

23

是的,你可以这样做。创建一个 Windows 窗体应用程序并添加一个NotifyIcon 组件

然后使用以下方法(在 MSDN 上找到)分配和显示一个控制台

[DllImport("kernel32.dll")]
public static extern Boolean AllocConsole();

[DllImport("kernel32.dll")]
public static extern Boolean FreeConsole();

[DllImport("kernel32.dll")]
public static extern Boolean AttachConsole(Int32 ProcessId);

当您的控制台在屏幕上时,捕获最小化按钮单击并使用它来隐藏控制台窗口并更新通知图标。您可以使用以下方法(在 MSDN 上找到)找到您的窗口:

[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

// Find window by Caption only. Note you must pass IntPtr.Zero as the first parameter.
// Also consider whether you're being lazy or not.
[DllImport("user32.dll", EntryPoint="FindWindow", SetLastError = true)]
static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName);

当您准备好关闭应用程序时,请务必致电 FreeConsole。

于 2009-04-15T14:40:16.307 回答
15
using System.Windows.Forms;
using System.Drawing;

static NotifyIcon notifyIcon = new NotifyIcon();
static bool Visible = true;
static void Main(string[] args)
{
    notifyIcon.DoubleClick += (s, e) =>
    {
        Visible = !Visible;
        SetConsoleWindowVisibility(Visible);
    };
    notifyIcon.Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath);
    notifyIcon.Visible = true;
    notifyIcon.Text = Application.ProductName;

    var contextMenu = new ContextMenuStrip();
    contextMenu.Items.Add("Exit", null, (s, e) => { Application.Exit(); });
    notifyIcon.ContextMenuStrip = contextMenu;

    Console.WriteLine("Running!");

    // Standard message loop to catch click-events on notify icon
    // Code after this method will be running only after Application.Exit()
    Application.Run(); 

    notifyIcon.Visible = false;
}

[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
public static void SetConsoleWindowVisibility(bool visible)
{
    IntPtr hWnd = FindWindow(null, Console.Title);
    if (hWnd != IntPtr.Zero)
    {
        if (visible) ShowWindow(hWnd, 1); //1 = SW_SHOWNORMAL           
        else ShowWindow(hWnd, 0); //0 = SW_HIDE               
    }
}
于 2017-06-04T17:26:45.933 回答
8

控制台本身没有可最小化的窗口。它在命令提示符窗口中运行。您可以挂钩窗口消息并在最小化时隐藏窗口。在您的应用程序中,可以像在 Windows 应用程序中一样添加托盘图标。嗯,不知何故,这闻起来......

但是:我不确定你为什么要这样做。控制台应用程序的设计不同于 Windows 应用程序。因此,也许可以将应用程序更改为 Windows 窗体应用程序?

于 2009-04-15T14:25:21.023 回答
3

我正是为了这个目的使用TrayRunner。本质上,它包装了一个控制台应用程序,用于捕获所有输出。但是当最小化时,它会最小化到系统托盘而不是任务栏。您甚至可以自定义最小化时要显示的图标。我将它用于 Tomcat 或 Apache 之类的东西,以释放任务栏上的空间,而不将它们作为 Windows 服务运行。

于 2016-04-14T21:48:42.870 回答
2
[DllImport("user32.dll")]
internal static extern bool SendMessage(IntPtr hWnd, Int32 msg, Int32 wParam, Int32 lParam);
static Int32 WM_SYSCOMMAND = 0x0112;
static Int32 SC_MINIMIZE = 0x0F020;

static void Main(string[] args)
{
    SendMessage(Process.GetCurrentProcess().MainWindowHandle, WM_SYSCOMMAND, SC_MINIMIZE, 0);
}
于 2012-08-06T11:44:01.780 回答
0

您不能隐藏控制台应用程序,因为它实际上没有要隐藏的窗口,看它是如何在控制台中运行的(控制台本身只是控制台的一个窗口,而不是在其中运行的应用程序)

于 2009-04-15T14:28:11.377 回答