Beispiel #1
0
        /// <summary>
        /// 进入质控系统的主窗体的所得病人信息
        /// </summary>
        private void BindAllDepartmentStatInfo()
        {
            m_WaitDialog = new WaitDialogForm("正在加载科室统计信息!", "请您稍后!");
            SetWaitDialogCaption();
            DataTable dt = m_SqlManger.GetAllDepartmentStatInfo(m_deptNo, m_patID, m_name, m_status, m_beginInTime, m_endInTime, USERINDENTY);

            gridControlAllDepartmentStatInfo.BeginUpdate();
            gridControlAllDepartmentStatInfo.DataSource = dt;
            gridControlAllDepartmentStatInfo.EndUpdate();
            HideWaitDialog();
        }