我是C#编程的新手,我迷失了一件可能很简单的事情。
执行一个控制台应用程序,我需要调用一个Windows窗体,它将显示执行的静态但是当我调用form1.ShowDialog();这会停止控制台运行时。
当我显示Windows窗体屏幕时,如何让控制台执行保持活动状态?
class Program
{
static Form1 form = new Form1();
public static bool run = true;
static void Main(string[] args)
{
work();
}
public static void work()
{
form.Show();
while (run)
{
Console.WriteLine("Console still running");
}
}
}
答案 0 :(得分:2)
试试这个对我有用
using System.Windows.Forms;
using System.Threading;
namespace ConsoleApplication1
{
class Program
{
public static bool run = true;
static void Main(string[] args)
{
Startthread();
Application.Run(new Form1());
Console.ReadLine();
}
private static void Startthread()
{
var thread = new Thread(() =>
{
while (run)
{
Console.WriteLine("console is running...");
Thread.Sleep(1000);
}
});
thread.Start();
}
}
}
在我自己的理解中,线程就像“进程中的进程”。
答案 1 :(得分:1)
见this question。您必须使用Form1.Show()
,因为Form1.ShowDialog()
会暂停执行,直到表单关闭。
更新这似乎有效(使用Application.Run): -
public static Form1 form = new Form1();
public static bool run = true;
[MTAThread]
static void Main(string[] args)
{
new Thread(() => Application.Run(form)).Start();
new Thread(work).Start();
}
public static void work()
{
while (run)
{
Console.WriteLine("Console Running");
}
}