我知道在 VB.NET 中可以这样做,但我不知道如何在 C# 中这样做。在这里怎么办?
问问题
82 次
3 回答
3
您可以将(默认情况下)Main
中的例程(程序的入口点)更改为使用而不是.Program.cs
Application.Run()
Application.Run(Form)
或者,您可以指定自己的ApplicationContext
并覆盖OnMainFormClosed
以提供与自动关闭不同的行为。
于 2012-05-31T01:46:26.213 回答
1
您可以隐藏表单并在系统托盘中放置一个图标。覆盖关闭事件并将其隐藏,然后在用户单击托盘图标时显示它。
有关关闭事件以及如何取消关闭的更多信息:http: //msdn.microsoft.com/en-us/library/system.windows.forms.form.closing.aspx
于 2012-05-31T01:44:56.637 回答
0
开始一个新的做你建议的事情就足够了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;
}
}
}
}
顺便说一句,上面的代码只是一个演示,永远不应该:
- 做一个在紧密循环中什么都不做的线程
- 在类构造函数中启动线程
于 2012-05-31T01:46:07.697 回答