在WinForm中启动多线程的方法有以下几种:
使用Thread类启动线程:
Thread thread = new Thread(new ThreadStart(MethodName));
thread.Start();
使用ThreadPool类启动线程:
ThreadPool.QueueUserWorkItem(new WaitCallback(MethodName));
使用Task类启动线程:
Task.Run(() => MethodName());
使用BackgroundWorker组件启动线程:
BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += new DoWorkEventHandler(MethodName);
worker.RunWorkerAsync();
其中,MethodName是需要在单独线程中执行的方法的名称。在这些方法中,可以执行耗时操作,而不会阻塞UI线程。