在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線程。