using System; using System.Windows.Forms; namespace HL_FristAidPlatform_PreHospitalEmergency { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form_CurrentTaskInfo()); //Thread th = new Thread(ThreadChild); //th.Start(); } static void ThreadChild() { //string url = string.Format("api/service/T_Service_Patient/T_Service_FirstAid_AlarmTaskInfo?guid={0}", Information.Hospital.GUID); //DataTable dt = DBHelpClass.GetDataRow(url); //if (dt != null) //{ // if (dt.Rows.Count > 0) // { // Form_TaskInfo from = new Form_TaskInfo(); // from.Show(); // } //} } } }