Thread th = new System.Threading.Thread((System.Threading.ThreadStart)delegate
{
Application.Run(new FormPHPMore.pDataManage());
});
th.SetApartmentState(ApartmentState.STA);
th.IsBackground = true;
th.Start();
关键字词:

