当主窗体关闭时,是否有可能使程序本身不关闭

本文关键字:程序 有可能 窗体 是否 | 更新日期: 2023-09-27 18:35:54

我知道在 VB.NET 中可以这样做,但我无法在 C# 中找到如何做到这一点。它在这里会怎么做?

当主窗体关闭时,是否有可能使程序本身不关闭

您可以在 Program.cs(默认情况下)中更改Main例程(程序的入口点)以使用 Application.Run() 而不是 Application.Run(Form)

或者,您可以指定自己的ApplicationContext并覆盖OnMainFormClosed以提供与自动关闭不同的行为。

您可以隐藏表单并在系统托盘中放置图标。 覆盖关闭事件并将其隐藏,然后在用户单击托盘图标时显示它。

有关收盘活动以及如何取消收盘的更多信息:http://msdn.microsoft.com/en-us/library/system.windows.forms.form.closing.aspx

开始一个新的Thread来做你的建议就足够了,但我不确定这是否能满足你的目标。

编辑:

我建议的技术示例:

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading;
namespace HangApp
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
            Runner r = new Runner();
        }
        class Runner
        {
            internal Runner()
            {
                _start = DateTime.Now;
                Thread t = new Thread(ThreadStart);
                t.Start();
            }
            DateTime _start;
            void ThreadStart()
            {
                while (true)
                {
                    //  some stuff to do
                    if (ExitConditionMet())
                    {
                        break;
                    }
                }
            }
            bool ExitConditionMet()
            {
                //  will run the app for 5 seconds after main form was closed
                return (DateTime.Now - _start).TotalSeconds > 5;
            }
        }
    }
}

顺便说一句,上面的代码只是一个演示,永远不应该:

    执行
  • 在紧密循环中不执行任何操作的线程
  • 在类构造函数中执行线程启动