/// <summary>
        /// 初始化下拉控件

        /// </summary>
        private void InitComb()
        {
            if (this.DesignMode)
            {
                return;
            }
            // 业务
            Neusoft.HISFC.BizProcess.Integrate.Terminal.Booking bookingIntegrate = new Neusoft.HISFC.BizProcess.Integrate.Terminal.Booking();
            // 科室数组
            ArrayList deptList = bookingIntegrate.GetDeptmentAll();

            if (deptList == null)
            {
                deptList = new ArrayList();
            }

            this.neuComboBoxDept.AddItems(deptList);
            //this.neuComboBoxDept.isItemOnly = true;

            this.neuComboBoxDept.Tag  = this.operEnvironment.Dept.ID;
            this.neuComboBoxDept.Text = this.operEnvironment.Dept.Name;

            if (this.useScope != UseScope.AllDepartment)
            {
                this.neuComboBoxDept.Enabled = false;
            }
        }