Ejemplo n.º 1
0
        /// <summary>
        /// 设置工艺流程执行信息
        /// </summary>
        /// <param name="processList">工艺流程执行信息</param>
        /// <returns>成功返回1 失败返回-1</returns>
        public static int SetProcessItem(List <Neusoft.HISFC.Models.Preparation.Process> processList, System.Collections.Hashtable hsProcessControl)
        {
            foreach (Neusoft.HISFC.Models.Preparation.Process info in processList)
            {
                if (hsProcessControl.ContainsKey(info.ProcessItem.ID))
                {
                    Control c = hsProcessControl[info.ProcessItem.ID] as Control;
                    switch (c.GetType().ToString())
                    {
                    case "Neusoft.FrameWork.WinForms.Controls.NeuComboBox":
                        Neusoft.FrameWork.WinForms.Controls.NeuComboBox neuCombo = c as Neusoft.FrameWork.WinForms.Controls.NeuComboBox;
                        neuCombo.Tag = info.ResultStr;
                        break;

                    case "Neusoft.FrameWork.WinForms.Controls.NeuTextBox":
                        c.Text = info.ResultStr;
                        break;

                    case "Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker":
                        Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker neuDate = c as Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker;
                        neuDate.Value = Neusoft.FrameWork.Function.NConvert.ToDateTime(info.ResultStr);
                        break;

                    case "Neusoft.FrameWork.WinForms.Controls.NeuNumericTextBox":
                        c.Text = info.ResultQty.ToString();
                        break;

                    case "Neusoft.FrameWork.WinForms.Controls.ComboBox":
                        c.Text = info.ResultStr;
                        break;
                    }
                }
            }
            return(1);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 根据控件信息返回类实体信息
        /// </summary>
        /// <param name="control"></param>
        /// <returns></returns>
        private static int GetProcessItem(Control control, ref Neusoft.HISFC.Models.Preparation.Process p)
        {
            if (control is Neusoft.FrameWork.WinForms.Controls.NeuComboBox)
            {
                Neusoft.FrameWork.WinForms.Controls.NeuComboBox neuCombo = control as Neusoft.FrameWork.WinForms.Controls.NeuComboBox;
                p.ResultStr = neuCombo.Tag.ToString();
            }
            else if (control is Neusoft.FrameWork.WinForms.Controls.NeuComboBox)
            {
                p.ResultStr = control.Text;
            }
            else if (control is Neusoft.FrameWork.WinForms.Controls.NeuNumericTextBox)
            {
                p.ResultQty = Neusoft.FrameWork.Function.NConvert.ToDecimal(control.Text);
                p.ResultStr = control.Text;
            }
            else if (control is Neusoft.FrameWork.WinForms.Controls.NeuTextBox)
            {
                p.ResultStr = control.Text;
            }
            else if (control is Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker)
            {
                Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker neuDate = control as Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker;
                p.ResultStr = neuDate.Value.ToString();
            }


            return(1);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmChooseDate));
     this.dtpBeginDate = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.dtpEndDate   = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
     this.lblBeginDate = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.lblEndDate   = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.pictureBox1  = new Neusoft.FrameWork.WinForms.Controls.NeuPictureBox();
     this.label3       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
     this.btnOK        = new Neusoft.FrameWork.WinForms.Controls.NeuButton();
     this.btnExit      = new Neusoft.FrameWork.WinForms.Controls.NeuButton();
     this.SuspendLayout();
     //
     // dtpBeginDate
     //
     this.dtpBeginDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.dtpBeginDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpBeginDate.Location     = new System.Drawing.Point(117, 50);
     this.dtpBeginDate.Name         = "dtpBeginDate";
     this.dtpBeginDate.Size         = new System.Drawing.Size(151, 21);
     this.dtpBeginDate.TabIndex     = 0;
     //
     // dtpEndDate
     //
     this.dtpEndDate.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.dtpEndDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpEndDate.Location     = new System.Drawing.Point(117, 75);
     this.dtpEndDate.Name         = "dtpEndDate";
     this.dtpEndDate.Size         = new System.Drawing.Size(151, 21);
     this.dtpEndDate.TabIndex     = 0;
     //
     // lblBeginDate
     //
     this.lblBeginDate.Location  = new System.Drawing.Point(54, 52);
     this.lblBeginDate.Name      = "lblBeginDate";
     this.lblBeginDate.Size      = new System.Drawing.Size(60, 17);
     this.lblBeginDate.TabIndex  = 2;
     this.lblBeginDate.Text      = "起始时间:";
     this.lblBeginDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblEndDate
     //
     this.lblEndDate.Location  = new System.Drawing.Point(54, 77);
     this.lblEndDate.Name      = "lblEndDate";
     this.lblEndDate.Size      = new System.Drawing.Size(60, 17);
     this.lblEndDate.TabIndex  = 2;
     this.lblEndDate.Text      = "终止时间:";
     this.lblEndDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(12, 7);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(32, 32);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 3;
     this.pictureBox1.TabStop  = false;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(54, 21);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(72, 17);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "请选择日期:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(78, 106);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new System.Drawing.Size(79, 23);
     this.btnOK.TabIndex = 4;
     this.btnOK.Text     = "确定(&O)";
     this.btnOK.Click   += new System.EventHandler(this.btnOK_Click);
     //
     // btnExit
     //
     this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnExit.Location     = new System.Drawing.Point(169, 106);
     this.btnExit.Name         = "btnExit";
     this.btnExit.Size         = new System.Drawing.Size(79, 23);
     this.btnExit.TabIndex     = 4;
     this.btnExit.Text         = "退出(&X)";
     this.btnExit.Click       += new System.EventHandler(this.btnExit_Click);
     //
     // frmChooseDate
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.CancelButton      = this.btnExit;
     this.ClientSize        = new System.Drawing.Size(313, 145);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.lblBeginDate);
     this.Controls.Add(this.lblEndDate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.dtpBeginDate);
     this.Controls.Add(this.dtpEndDate);
     this.Controls.Add(this.btnExit);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "frmChooseDate";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "日期选择";
     this.Load           += new System.EventHandler(this.frmChooseDate_Load);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            this.groupBox1        = new System.Windows.Forms.GroupBox();
            this.dtContinue       = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.cbContinueLend   = new Neusoft.FrameWork.WinForms.Controls.NeuCheckBox();
            this.txReturn         = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label10          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtReturn         = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label2           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txDept           = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label1           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txName           = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label9           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.CardNO           = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.cbReturn         = new Neusoft.FrameWork.WinForms.Controls.NeuCheckBox();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.dtContinue);
            this.groupBox1.Controls.Add(this.cbContinueLend);
            this.groupBox1.Controls.Add(this.txReturn);
            this.groupBox1.Controls.Add(this.label10);
            this.groupBox1.Controls.Add(this.dtReturn);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.txDept);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.txName);
            this.groupBox1.Controls.Add(this.label9);
            this.groupBox1.Controls.Add(this.CardNO);
            this.groupBox1.Controls.Add(this.cbReturn);
            this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(800, 91);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "借阅信息";
            //
            // dtContinue
            //
            this.dtContinue.Enabled     = false;
            this.dtContinue.IsEnter2Tab = false;
            this.dtContinue.Location    = new System.Drawing.Point(647, 31);
            this.dtContinue.Name        = "dtContinue";
            this.dtContinue.Size        = new System.Drawing.Size(114, 21);
            this.dtContinue.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtContinue.TabIndex    = 45;
            //
            // cbContinueLend
            //
            this.cbContinueLend.Location        = new System.Drawing.Point(575, 29);
            this.cbContinueLend.Name            = "cbContinueLend";
            this.cbContinueLend.Size            = new System.Drawing.Size(76, 24);
            this.cbContinueLend.Style           = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.cbContinueLend.TabIndex        = 46;
            this.cbContinueLend.Text            = "续   借";
            this.cbContinueLend.CheckedChanged += new System.EventHandler(this.cbContinueLend_CheckedChanged);
            this.cbContinueLend.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.cbContinueLend_KeyDown);
            //
            // txReturn
            //
            this.txReturn.BackColor   = System.Drawing.Color.White;
            this.txReturn.IsEnter2Tab = false;
            this.txReturn.Location    = new System.Drawing.Point(280, 63);
            this.txReturn.MaxLength   = 50;
            this.txReturn.Name        = "txReturn";
            this.txReturn.Size        = new System.Drawing.Size(474, 21);
            this.txReturn.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txReturn.TabIndex    = 44;
            //
            // label10
            //
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(210, 67);
            this.label10.Name     = "label10";
            this.label10.Size     = new System.Drawing.Size(53, 12);
            this.label10.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label10.TabIndex = 43;
            this.label10.Text     = "返还情况";
            //
            // dtReturn
            //
            this.dtReturn.IsEnter2Tab = false;
            this.dtReturn.Location    = new System.Drawing.Point(88, 63);
            this.dtReturn.Name        = "dtReturn";
            this.dtReturn.Size        = new System.Drawing.Size(107, 21);
            this.dtReturn.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtReturn.TabIndex    = 40;
            //
            // label2
            //
            this.label2.AutoSize  = true;
            this.label2.Location  = new System.Drawing.Point(408, 36);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(53, 12);
            this.label2.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label2.TabIndex  = 23;
            this.label2.Text      = "科    室";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txDept
            //
            this.txDept.BackColor   = System.Drawing.Color.White;
            this.txDept.IsEnter2Tab = false;
            this.txDept.Location    = new System.Drawing.Point(464, 32);
            this.txDept.Name        = "txDept";
            this.txDept.ReadOnly    = true;
            this.txDept.Size        = new System.Drawing.Size(104, 21);
            this.txDept.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txDept.TabIndex    = 24;
            //
            // label1
            //
            this.label1.AutoSize  = true;
            this.label1.Location  = new System.Drawing.Point(210, 36);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(53, 12);
            this.label1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label1.TabIndex  = 21;
            this.label1.Text      = "姓    名";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txName
            //
            this.txName.BackColor   = System.Drawing.Color.White;
            this.txName.IsEnter2Tab = false;
            this.txName.Location    = new System.Drawing.Point(280, 32);
            this.txName.Name        = "txName";
            this.txName.ReadOnly    = true;
            this.txName.Size        = new System.Drawing.Size(100, 21);
            this.txName.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txName.TabIndex    = 22;
            //
            // label9
            //
            this.label9.AutoSize  = true;
            this.label9.Location  = new System.Drawing.Point(24, 36);
            this.label9.Name      = "label9";
            this.label9.Size      = new System.Drawing.Size(53, 12);
            this.label9.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label9.TabIndex  = 19;
            this.label9.Text      = "工    号";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // CardNO
            //
            this.CardNO.IsEnter2Tab = false;
            this.CardNO.Location    = new System.Drawing.Point(88, 32);
            this.CardNO.Name        = "CardNO";
            this.CardNO.Size        = new System.Drawing.Size(107, 21);
            this.CardNO.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.CardNO.TabIndex    = 20;
            this.CardNO.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.CardNO_KeyDown);
            //
            // cbReturn
            //
            this.cbReturn.Checked         = true;
            this.cbReturn.CheckState      = System.Windows.Forms.CheckState.Checked;
            this.cbReturn.Location        = new System.Drawing.Point(26, 61);
            this.cbReturn.Name            = "cbReturn";
            this.cbReturn.Size            = new System.Drawing.Size(51, 24);
            this.cbReturn.Style           = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.cbReturn.TabIndex        = 42;
            this.cbReturn.Text            = "返还";
            this.cbReturn.CheckedChanged += new System.EventHandler(this.cbReturn_CheckedChanged);
            this.cbReturn.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.cbReturn_KeyDown);
            //
            // fpSpread1
            //
            this.fpSpread1.About = "3.0.2004.2005";
            this.fpSpread1.AccessibleDescription = "fpSpread1, Sheet1";
            this.fpSpread1.BackColor             = System.Drawing.SystemColors.Control;
            this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.Location = new System.Drawing.Point(0, 91);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                    = new System.Drawing.Size(800, 509);
            this.fpSpread1.TabIndex                = 1;
            tipAppearance1.BackColor               = System.Drawing.SystemColors.Info;
            tipAppearance1.Font                    = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor               = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance       = tipAppearance1;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet1.ColumnCount    = 8;
            this.fpSpread1_Sheet1.RowCount       = 0;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "选择";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "病案号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "|";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "姓名";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "性别";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "借阅类型";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "借阅日期";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "住院流水号";
            this.fpSpread1_Sheet1.Columns.Get(1).Label = "病案号";
            this.fpSpread1_Sheet1.Columns.Get(1).Width = 81F;
            this.fpSpread1_Sheet1.Columns.Get(3).Label = "姓名";
            this.fpSpread1_Sheet1.Columns.Get(3).Width = 73F;
            this.fpSpread1_Sheet1.Columns.Get(5).Label = "借阅类型";
            this.fpSpread1_Sheet1.Columns.Get(5).Width = 71F;
            this.fpSpread1_Sheet1.Columns.Get(6).Label = "借阅日期";
            this.fpSpread1_Sheet1.Columns.Get(6).Width = 126F;
            this.fpSpread1_Sheet1.Columns.Get(7).Label = "住院流水号";
            this.fpSpread1_Sheet1.Columns.Get(7).Width = 122F;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.Columns.Get(0).Width      = 37F;
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            this.fpSpread1.SetActiveViewport(0, 1, 0);
            //
            // ucReturnCase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.BackColor           = System.Drawing.Color.Azure;
            this.Controls.Add(this.fpSpread1);
            this.Controls.Add(this.groupBox1);
            this.Name  = "ucReturnCase";
            this.Size  = new System.Drawing.Size(800, 600);
            this.Load += new System.EventHandler(this.frmReturnCase_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }
Ejemplo n.º 5
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            FarPoint.Win.Spread.TipAppearance tipAppearance3 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.Spread.TipAppearance tipAppearance4 = new FarPoint.Win.Spread.TipAppearance();
            this.groupBox1    = new System.Windows.Forms.GroupBox();
            this.dtInDate     = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.dtOutDate    = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label8       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label7       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label6       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txDeptOut    = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label5       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txDeptIn     = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label4       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txSex        = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label3       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txName       = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label2       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.caseNo       = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label1       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtBirthDate  = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.groupBox2    = new System.Windows.Forms.GroupBox();
            this.label13      = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label12      = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.comType      = new System.Windows.Forms.ComboBox();
            this.comPerson    = new Neusoft.FrameWork.WinForms.Controls.NeuComboBox(this.components);
            this.label10      = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label9       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.CardNO       = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.txReturnTime = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.fpSpread1    = new FarPoint.Win.Spread.FpSpread();
            this.caseDetail   = new FarPoint.Win.Spread.SheetView();
            this.tabControl1  = new System.Windows.Forms.TabControl();
            this.tabPage1     = new System.Windows.Forms.TabPage();
            this.fpSpread2    = new FarPoint.Win.Spread.FpSpread();
            this.caseMain     = new FarPoint.Win.Spread.SheetView();
            this.tabPage2     = new System.Windows.Forms.TabPage();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.caseDetail)).BeginInit();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.caseMain)).BeginInit();
            this.tabPage2.SuspendLayout();
            this.SuspendLayout();
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.dtInDate);
            this.groupBox1.Controls.Add(this.dtOutDate);
            this.groupBox1.Controls.Add(this.label8);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.txDeptOut);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.txDeptIn);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.txSex);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.txName);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.caseNo);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.dtBirthDate);
            this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 53);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(874, 53);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "病案信息";
            //
            // dtInDate
            //
            this.dtInDate.Enabled     = false;
            this.dtInDate.IsEnter2Tab = false;
            this.dtInDate.Location    = new System.Drawing.Point(440, 52);
            this.dtInDate.Name        = "dtInDate";
            this.dtInDate.Size        = new System.Drawing.Size(104, 21);
            this.dtInDate.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtInDate.TabIndex    = 16;
            //
            // dtOutDate
            //
            this.dtOutDate.Enabled     = false;
            this.dtOutDate.IsEnter2Tab = false;
            this.dtOutDate.Location    = new System.Drawing.Point(88, 84);
            this.dtOutDate.Name        = "dtOutDate";
            this.dtOutDate.Size        = new System.Drawing.Size(104, 21);
            this.dtOutDate.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtOutDate.TabIndex    = 15;
            //
            // label8
            //
            this.label8.AutoSize  = true;
            this.label8.Location  = new System.Drawing.Point(200, 88);
            this.label8.Name      = "label8";
            this.label8.Size      = new System.Drawing.Size(53, 12);
            this.label8.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label8.TabIndex  = 14;
            this.label8.Text      = "出生日期";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label7
            //
            this.label7.AutoSize  = true;
            this.label7.Location  = new System.Drawing.Point(24, 88);
            this.label7.Name      = "label7";
            this.label7.Size      = new System.Drawing.Size(53, 12);
            this.label7.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label7.TabIndex  = 12;
            this.label7.Text      = "出院日期";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label6
            //
            this.label6.AutoSize  = true;
            this.label6.Location  = new System.Drawing.Point(376, 56);
            this.label6.Name      = "label6";
            this.label6.Size      = new System.Drawing.Size(53, 12);
            this.label6.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label6.TabIndex  = 10;
            this.label6.Text      = "入院日期";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txDeptOut
            //
            this.txDeptOut.BackColor   = System.Drawing.Color.Azure;
            this.txDeptOut.IsEnter2Tab = false;
            this.txDeptOut.Location    = new System.Drawing.Point(264, 52);
            this.txDeptOut.Name        = "txDeptOut";
            this.txDeptOut.ReadOnly    = true;
            this.txDeptOut.Size        = new System.Drawing.Size(100, 21);
            this.txDeptOut.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txDeptOut.TabIndex    = 9;
            //
            // label5
            //
            this.label5.AutoSize  = true;
            this.label5.Location  = new System.Drawing.Point(200, 56);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(53, 12);
            this.label5.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label5.TabIndex  = 8;
            this.label5.Text      = "出院科室";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txDeptIn
            //
            this.txDeptIn.BackColor   = System.Drawing.Color.Azure;
            this.txDeptIn.IsEnter2Tab = false;
            this.txDeptIn.Location    = new System.Drawing.Point(88, 52);
            this.txDeptIn.Name        = "txDeptIn";
            this.txDeptIn.ReadOnly    = true;
            this.txDeptIn.Size        = new System.Drawing.Size(100, 21);
            this.txDeptIn.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txDeptIn.TabIndex    = 7;
            //
            // label4
            //
            this.label4.AutoSize  = true;
            this.label4.Location  = new System.Drawing.Point(24, 56);
            this.label4.Name      = "label4";
            this.label4.Size      = new System.Drawing.Size(53, 12);
            this.label4.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label4.TabIndex  = 6;
            this.label4.Text      = "入院科室";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txSex
            //
            this.txSex.BackColor   = System.Drawing.Color.Azure;
            this.txSex.IsEnter2Tab = false;
            this.txSex.Location    = new System.Drawing.Point(440, 24);
            this.txSex.Name        = "txSex";
            this.txSex.ReadOnly    = true;
            this.txSex.Size        = new System.Drawing.Size(100, 21);
            this.txSex.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txSex.TabIndex    = 5;
            //
            // label3
            //
            this.label3.AutoSize  = true;
            this.label3.Location  = new System.Drawing.Point(376, 24);
            this.label3.Name      = "label3";
            this.label3.Size      = new System.Drawing.Size(53, 12);
            this.label3.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label3.TabIndex  = 4;
            this.label3.Text      = "性    别";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txName
            //
            this.txName.BackColor   = System.Drawing.Color.Azure;
            this.txName.IsEnter2Tab = false;
            this.txName.Location    = new System.Drawing.Point(264, 24);
            this.txName.Name        = "txName";
            this.txName.ReadOnly    = true;
            this.txName.Size        = new System.Drawing.Size(100, 21);
            this.txName.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txName.TabIndex    = 3;
            //
            // label2
            //
            this.label2.AutoSize  = true;
            this.label2.Location  = new System.Drawing.Point(200, 24);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(53, 12);
            this.label2.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label2.TabIndex  = 2;
            this.label2.Text      = "姓    名";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // caseNo
            //
            this.caseNo.IsEnter2Tab = false;
            this.caseNo.Location    = new System.Drawing.Point(88, 24);
            this.caseNo.Name        = "caseNo";
            this.caseNo.Size        = new System.Drawing.Size(100, 21);
            this.caseNo.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.caseNo.TabIndex    = 1;
            this.caseNo.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.caseNo_KeyDown);
            this.caseNo.Enter      += new System.EventHandler(this.caseNo_Enter);
            //
            // label1
            //
            this.label1.AutoSize  = true;
            this.label1.Location  = new System.Drawing.Point(24, 24);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(53, 12);
            this.label1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label1.TabIndex  = 0;
            this.label1.Text      = "病 案 号";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // dtBirthDate
            //
            this.dtBirthDate.Enabled     = false;
            this.dtBirthDate.IsEnter2Tab = false;
            this.dtBirthDate.Location    = new System.Drawing.Point(264, 84);
            this.dtBirthDate.Name        = "dtBirthDate";
            this.dtBirthDate.Size        = new System.Drawing.Size(104, 21);
            this.dtBirthDate.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtBirthDate.TabIndex    = 0;
            //
            // groupBox2
            //
            this.groupBox2.Controls.Add(this.label13);
            this.groupBox2.Controls.Add(this.label12);
            this.groupBox2.Controls.Add(this.comType);
            this.groupBox2.Controls.Add(this.comPerson);
            this.groupBox2.Controls.Add(this.label10);
            this.groupBox2.Controls.Add(this.label9);
            this.groupBox2.Controls.Add(this.CardNO);
            this.groupBox2.Controls.Add(this.txReturnTime);
            this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Top;
            this.groupBox2.Location = new System.Drawing.Point(0, 0);
            this.groupBox2.Name     = "groupBox2";
            this.groupBox2.Size     = new System.Drawing.Size(874, 53);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop  = false;
            this.groupBox2.Text     = "个人信息";
            //
            // label13
            //
            this.label13.AutoSize  = true;
            this.label13.Location  = new System.Drawing.Point(570, 21);
            this.label13.Name      = "label13";
            this.label13.Size      = new System.Drawing.Size(77, 12);
            this.label13.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label13.TabIndex  = 27;
            this.label13.Text      = "预计返还时间";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label12
            //
            this.label12.AutoSize  = true;
            this.label12.Location  = new System.Drawing.Point(384, 21);
            this.label12.Name      = "label12";
            this.label12.Size      = new System.Drawing.Size(53, 12);
            this.label12.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label12.TabIndex  = 25;
            this.label12.Text      = "借阅方式";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // comType
            //
            this.comType.Items.AddRange(new object[] {
                "内借",
                "外借"
            });
            this.comType.Location = new System.Drawing.Point(448, 17);
            this.comType.Name     = "comType";
            this.comType.Size     = new System.Drawing.Size(104, 20);
            this.comType.TabIndex = 22;
            this.comType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comType_KeyDown);
            //
            // comPerson
            //
            this.comPerson.ArrowBackColor     = System.Drawing.Color.Silver;
            this.comPerson.Enabled            = false;
            this.comPerson.IsEnter2Tab        = false;
            this.comPerson.IsFlat             = false;
            this.comPerson.IsLike             = true;
            this.comPerson.IsListOnly         = false;
            this.comPerson.IsPopForm          = true;
            this.comPerson.IsShowCustomerList = false;
            this.comPerson.IsShowID           = false;
            this.comPerson.Location           = new System.Drawing.Point(264, 17);
            this.comPerson.Name             = "comPerson";
            this.comPerson.PopForm          = null;
            this.comPerson.ShowCustomerList = false;
            this.comPerson.ShowID           = false;
            this.comPerson.Size             = new System.Drawing.Size(104, 20);
            this.comPerson.Style            = Neusoft.FrameWork.WinForms.Controls.StyleType.Flat;
            this.comPerson.TabIndex         = 21;
            this.comPerson.Tag        = "";
            this.comPerson.ToolBarUse = false;
            //
            // label10
            //
            this.label10.AutoSize  = true;
            this.label10.Location  = new System.Drawing.Point(200, 21);
            this.label10.Name      = "label10";
            this.label10.Size      = new System.Drawing.Size(53, 12);
            this.label10.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label10.TabIndex  = 19;
            this.label10.Text      = "姓    名";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label9
            //
            this.label9.AutoSize  = true;
            this.label9.Location  = new System.Drawing.Point(24, 21);
            this.label9.Name      = "label9";
            this.label9.Size      = new System.Drawing.Size(53, 12);
            this.label9.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label9.TabIndex  = 17;
            this.label9.Text      = "工    号";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // CardNO
            //
            this.CardNO.IsEnter2Tab = false;
            this.CardNO.Location    = new System.Drawing.Point(88, 17);
            this.CardNO.Name        = "CardNO";
            this.CardNO.Size        = new System.Drawing.Size(100, 21);
            this.CardNO.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.CardNO.TabIndex    = 18;
            this.CardNO.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.CardNO_KeyDown);
            this.CardNO.Enter      += new System.EventHandler(this.CardNO_Enter);
            //
            // txReturnTime
            //
            this.txReturnTime.IsEnter2Tab = false;
            this.txReturnTime.Location    = new System.Drawing.Point(650, 17);
            this.txReturnTime.Name        = "txReturnTime";
            this.txReturnTime.Size        = new System.Drawing.Size(122, 21);
            this.txReturnTime.Style       = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txReturnTime.TabIndex    = 17;
            this.txReturnTime.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.txReturnTime_KeyDown);
            //
            // fpSpread1
            //
            this.fpSpread1.About = "3.0.2004.2005";
            this.fpSpread1.AccessibleDescription = "fpSpread1, Sheet1";
            this.fpSpread1.BackColor             = System.Drawing.Color.Transparent;
            this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.Location = new System.Drawing.Point(3, 3);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.caseDetail
            });
            this.fpSpread1.Size                    = new System.Drawing.Size(860, 494);
            this.fpSpread1.TabIndex                = 2;
            tipAppearance3.BackColor               = System.Drawing.SystemColors.Info;
            tipAppearance3.Font                    = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance3.ForeColor               = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance       = tipAppearance3;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // caseDetail
            //
            this.caseDetail.Reset();
            this.caseDetail.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.caseDetail.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.caseDetail.ColumnCount    = 8;
            this.caseDetail.RowCount       = 0;
            this.caseDetail.ColumnHeader.Cells.Get(0, 0).Value = "住院流水号";
            this.caseDetail.ColumnHeader.Cells.Get(0, 1).Value = "住院号";
            this.caseDetail.ColumnHeader.Cells.Get(0, 2).Value = "病案号";
            this.caseDetail.ColumnHeader.Cells.Get(0, 3).Value = "姓名";
            this.caseDetail.ColumnHeader.Cells.Get(0, 4).Value = "入院科室";
            this.caseDetail.ColumnHeader.Cells.Get(0, 5).Value = "入院日期";
            this.caseDetail.ColumnHeader.Cells.Get(0, 6).Value = "出院科室";
            this.caseDetail.ColumnHeader.Cells.Get(0, 7).Value = "出院日期";
            this.caseDetail.Columns.Get(0).Label = "住院流水号";
            this.caseDetail.Columns.Get(0).Width = 77F;
            this.caseDetail.Columns.Get(4).Label = "入院科室";
            this.caseDetail.Columns.Get(4).Width = 68F;
            this.caseDetail.OperationMode        = FarPoint.Win.Spread.OperationMode.ReadOnly;
            this.caseDetail.RowHeader.Columns.Default.Resizable = false;
            this.caseDetail.RowHeader.Columns.Get(0).Width      = 37F;
            this.caseDetail.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            this.fpSpread1.SetActiveViewport(0, 1, 0);
            //
            // tabControl1
            //
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location      = new System.Drawing.Point(0, 106);
            this.tabControl1.Name          = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size          = new System.Drawing.Size(874, 526);
            this.tabControl1.TabIndex      = 3;
            //
            // tabPage1
            //
            this.tabPage1.Controls.Add(this.fpSpread2);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name     = "tabPage1";
            this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size     = new System.Drawing.Size(866, 500);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text     = "病案基本信息";
            this.tabPage1.UseVisualStyleBackColor = true;
            //
            // fpSpread2
            //
            this.fpSpread2.About = "3.0.2004.2005";
            this.fpSpread2.AccessibleDescription = "fpSpread2, Sheet1, Row 0, Column 0, ";
            this.fpSpread2.BackColor             = System.Drawing.Color.Transparent;
            this.fpSpread2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread2.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread2.Location = new System.Drawing.Point(3, 3);
            this.fpSpread2.Name     = "fpSpread2";
            this.fpSpread2.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.caseMain
            });
            this.fpSpread2.Size                    = new System.Drawing.Size(860, 494);
            this.fpSpread2.TabIndex                = 3;
            tipAppearance4.BackColor               = System.Drawing.SystemColors.Info;
            tipAppearance4.Font                    = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance4.ForeColor               = System.Drawing.SystemColors.InfoText;
            this.fpSpread2.TextTipAppearance       = tipAppearance4;
            this.fpSpread2.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread2.CellDoubleClick        += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread2_CellDoubleClick);
            this.fpSpread2.CellClick              += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread2_CellClick);
            //
            // caseMain
            //
            this.caseMain.Reset();
            this.caseMain.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.caseMain.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.caseMain.ColumnCount    = 8;
            this.caseMain.RowCount       = 0;
            this.caseMain.ColumnHeader.Cells.Get(0, 0).Value = "病案号";
            this.caseMain.ColumnHeader.Cells.Get(0, 1).Value = "姓名";
            this.caseMain.ColumnHeader.Cells.Get(0, 2).Value = "性别";
            this.caseMain.ColumnHeader.Cells.Get(0, 3).Value = "民族";
            this.caseMain.ColumnHeader.Cells.Get(0, 4).Value = "出生日期";
            this.caseMain.ColumnHeader.Cells.Get(0, 5).Value = "出生地";
            this.caseMain.ColumnHeader.Cells.Get(0, 6).Value = "联系电话";
            this.caseMain.ColumnHeader.Cells.Get(0, 7).Value = "联系地址";
            this.caseMain.Columns.Get(0).Label = "病案号";
            this.caseMain.Columns.Get(0).Width = 87F;
            this.caseMain.Columns.Get(6).Label = "联系电话";
            this.caseMain.Columns.Get(6).Width = 79F;
            this.caseMain.Columns.Get(7).Label = "联系地址";
            this.caseMain.Columns.Get(7).Width = 117F;
            this.caseMain.OperationMode        = FarPoint.Win.Spread.OperationMode.ReadOnly;
            this.caseMain.RowHeader.Columns.Default.Resizable = false;
            this.caseMain.RowHeader.Columns.Get(0).Width      = 37F;
            this.caseMain.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            this.fpSpread2.SetActiveViewport(0, 1, 0);
            //
            // tabPage2
            //
            this.tabPage2.Controls.Add(this.fpSpread1);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name     = "tabPage2";
            this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size     = new System.Drawing.Size(866, 500);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text     = "病案详细信息";
            this.tabPage2.UseVisualStyleBackColor = true;
            //
            // ucBorrowCase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.BackColor           = System.Drawing.Color.Azure;
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.groupBox2);
            this.Name  = "ucBorrowCase";
            this.Size  = new System.Drawing.Size(874, 632);
            this.Load += new System.EventHandler(this.frmLendCard_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.caseDetail)).EndInit();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.caseMain)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.ResumeLayout(false);
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.TipAppearance tipAppearance2 = new FarPoint.Win.Spread.TipAppearance();
            this.fpEnter1        = new Neusoft.FrameWork.WinForms.Controls.NeuFpEnter();
            this.fpEnter1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.contextMenu1    = new System.Windows.Forms.ContextMenu();
            this.menuItem2       = new System.Windows.Forms.MenuItem();
            this.panel1          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.txtCmethod      = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.txtCmodeid      = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label29         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtenddate3      = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label20         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtbegindate3    = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label21         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label22         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtday3         = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label23         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txttime3        = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.dtenddate2      = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label16         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtbegindate2    = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label17         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label18         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtday2         = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label19         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txttime2        = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.dtenddate1      = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label15         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.dtbegindate1    = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label14         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label13         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtday1         = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label12         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txttime1        = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label11         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label8          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtgy3          = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label6          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtgy2          = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.label7          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label5          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtgy1          = new Neusoft.FrameWork.WinForms.Controls.ValidatedTextBox();
            this.txtRdeviceid    = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.txtRprocessid   = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.txtRmodeid      = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label3          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label2          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label1          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label4          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label28         = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            ((System.ComponentModel.ISupportInitialize)(this.fpEnter1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpEnter1_Sheet1)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpEnter1
            //
            this.fpEnter1.About = "2.5.2007.2005";
            this.fpEnter1.AccessibleDescription = "";
            this.fpEnter1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpEnter1.EditModePermanent = true;
            this.fpEnter1.EditModeReplace   = true;
            this.fpEnter1.Location          = new System.Drawing.Point(0, 168);
            this.fpEnter1.Name       = "fpEnter1";
            this.fpEnter1.SelectNone = false;
            this.fpEnter1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpEnter1_Sheet1
            });
            this.fpEnter1.ShowListWhenOfFocus = false;
            this.fpEnter1.Size              = new System.Drawing.Size(840, 384);
            this.fpEnter1.TabIndex          = 0;
            tipAppearance2.BackColor        = System.Drawing.SystemColors.Info;
            tipAppearance2.Font             = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance2.ForeColor        = System.Drawing.SystemColors.InfoText;
            this.fpEnter1.TextTipAppearance = tipAppearance2;
            //
            // fpEnter1_Sheet1
            //
            this.fpEnter1_Sheet1.Reset();
            this.fpEnter1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpEnter1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpEnter1_Sheet1.ColumnCount    = 8;
            this.fpEnter1_Sheet1.ActiveSkin     = new FarPoint.Win.Spread.SheetSkin("CustomSkin1", System.Drawing.SystemColors.Control, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.LightGray, FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.White, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, false, false, true, true, true);
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value  = "时间";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value  = "药物名称";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value  = "单位";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value  = "疗程";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value  = "结果";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value  = "用量";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value  = "药品编码";
            this.fpEnter1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value  = "序号";
            this.fpEnter1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.fpEnter1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpEnter1_Sheet1.ColumnHeader.DefaultStyle.Locked    = false;
            this.fpEnter1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpEnter1_Sheet1.Columns.Get(0).Label = "时间";
            this.fpEnter1_Sheet1.Columns.Get(0).Width = 65F;
            this.fpEnter1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpEnter1_Sheet1.RowHeader.Columns.Get(0).Width      = 40F;
            this.fpEnter1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.White;
            this.fpEnter1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpEnter1_Sheet1.RowHeader.DefaultStyle.Locked       = false;
            this.fpEnter1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpEnter1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.White;
            this.fpEnter1_Sheet1.SheetCornerStyle.Locked             = false;
            this.fpEnter1_Sheet1.SheetCornerStyle.Parent             = "HeaderDefault";
            this.fpEnter1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // contextMenu1
            //
            this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                this.menuItem2
            });
            //
            // menuItem2
            //
            this.menuItem2.Index  = 0;
            this.menuItem2.Text   = "删除";
            this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
            //
            // panel1
            //
            this.panel1.BackColor = System.Drawing.Color.Azure;
            this.panel1.Controls.Add(this.txtCmethod);
            this.panel1.Controls.Add(this.txtCmodeid);
            this.panel1.Controls.Add(this.label29);
            this.panel1.Controls.Add(this.dtenddate3);
            this.panel1.Controls.Add(this.label20);
            this.panel1.Controls.Add(this.dtbegindate3);
            this.panel1.Controls.Add(this.label21);
            this.panel1.Controls.Add(this.label22);
            this.panel1.Controls.Add(this.txtday3);
            this.panel1.Controls.Add(this.label23);
            this.panel1.Controls.Add(this.txttime3);
            this.panel1.Controls.Add(this.dtenddate2);
            this.panel1.Controls.Add(this.label16);
            this.panel1.Controls.Add(this.dtbegindate2);
            this.panel1.Controls.Add(this.label17);
            this.panel1.Controls.Add(this.label18);
            this.panel1.Controls.Add(this.txtday2);
            this.panel1.Controls.Add(this.label19);
            this.panel1.Controls.Add(this.txttime2);
            this.panel1.Controls.Add(this.dtenddate1);
            this.panel1.Controls.Add(this.label15);
            this.panel1.Controls.Add(this.dtbegindate1);
            this.panel1.Controls.Add(this.label14);
            this.panel1.Controls.Add(this.label13);
            this.panel1.Controls.Add(this.txtday1);
            this.panel1.Controls.Add(this.label12);
            this.panel1.Controls.Add(this.txttime1);
            this.panel1.Controls.Add(this.label11);
            this.panel1.Controls.Add(this.label8);
            this.panel1.Controls.Add(this.txtgy3);
            this.panel1.Controls.Add(this.label6);
            this.panel1.Controls.Add(this.txtgy2);
            this.panel1.Controls.Add(this.label7);
            this.panel1.Controls.Add(this.label5);
            this.panel1.Controls.Add(this.txtgy1);
            this.panel1.Controls.Add(this.txtRdeviceid);
            this.panel1.Controls.Add(this.txtRprocessid);
            this.panel1.Controls.Add(this.txtRmodeid);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.label4);
            this.panel1.Controls.Add(this.label28);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(840, 168);
            this.panel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel1.TabIndex = 1;
            //
            // txtCmethod
            //
            this.txtCmethod.Location     = new System.Drawing.Point(304, 136);
            this.txtCmethod.MaxLength    = 6;
            this.txtCmethod.Name         = "txtCmethod";
            this.txtCmethod.Size         = new System.Drawing.Size(100, 21);
            this.txtCmethod.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txtCmethod.TabIndex     = 60;
            this.txtCmethod.Enter       += new System.EventHandler(this.Cmethod_Enter);
            this.txtCmethod.TextChanged += new System.EventHandler(this.Cmethod_TextChanged);
            this.txtCmethod.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Cmethod_KeyDown);
            //
            // txtCmodeid
            //
            this.txtCmodeid.Location     = new System.Drawing.Point(88, 136);
            this.txtCmodeid.MaxLength    = 6;
            this.txtCmodeid.Name         = "txtCmodeid";
            this.txtCmodeid.Size         = new System.Drawing.Size(100, 21);
            this.txtCmodeid.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txtCmodeid.TabIndex     = 52;
            this.txtCmodeid.Enter       += new System.EventHandler(this.Cmodeid_Enter);
            this.txtCmodeid.TextChanged += new System.EventHandler(this.Cmodeid_TextChanged);
            this.txtCmodeid.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Cmodeid_KeyDown);
            //
            // label29
            //
            this.label29.AutoSize  = true;
            this.label29.Location  = new System.Drawing.Point(232, 136);
            this.label29.Name      = "label29";
            this.label29.Size      = new System.Drawing.Size(53, 12);
            this.label29.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label29.TabIndex  = 51;
            this.label29.Text      = "化疗方法";
            this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // dtenddate3
            //
            this.dtenddate3.Location = new System.Drawing.Point(576, 104);
            this.dtenddate3.Name     = "dtenddate3";
            this.dtenddate3.Size     = new System.Drawing.Size(112, 21);
            this.dtenddate3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtenddate3.TabIndex = 41;
            this.dtenddate3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.end_date3_KeyDown);
            //
            // label20
            //
            this.label20.Location  = new System.Drawing.Point(536, 104);
            this.label20.Name      = "label20";
            this.label20.Size      = new System.Drawing.Size(32, 23);
            this.label20.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label20.TabIndex  = 40;
            this.label20.Text      = "止日";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // dtbegindate3
            //
            this.dtbegindate3.Location = new System.Drawing.Point(408, 104);
            this.dtbegindate3.Name     = "dtbegindate3";
            this.dtbegindate3.Size     = new System.Drawing.Size(112, 21);
            this.dtbegindate3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtbegindate3.TabIndex = 39;
            this.dtbegindate3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.begin_date3_KeyDown);
            //
            // label21
            //
            this.label21.Location  = new System.Drawing.Point(376, 104);
            this.label21.Name      = "label21";
            this.label21.Size      = new System.Drawing.Size(32, 23);
            this.label21.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label21.TabIndex  = 38;
            this.label21.Text      = "起日";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label22
            //
            this.label22.Location  = new System.Drawing.Point(344, 104);
            this.label22.Name      = "label22";
            this.label22.Size      = new System.Drawing.Size(24, 23);
            this.label22.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label22.TabIndex  = 37;
            this.label22.Text      = "天";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtday3
            //
            this.txtday3.AllowNegative    = false;
            this.txtday3.AutoPadRightZero = false;
            this.txtday3.Location         = new System.Drawing.Point(304, 104);
            this.txtday3.MaxDigits        = 0;
            this.txtday3.MaxLength        = 6;
            this.txtday3.Name             = "txtday3";
            this.txtday3.Size             = new System.Drawing.Size(32, 21);
            this.txtday3.TabIndex         = 36;
            this.txtday3.WillShowError    = false;
            this.txtday3.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.day3_KeyDown);
            //
            // label23
            //
            this.label23.Location  = new System.Drawing.Point(272, 104);
            this.label23.Name      = "label23";
            this.label23.Size      = new System.Drawing.Size(24, 23);
            this.label23.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label23.TabIndex  = 35;
            this.label23.Text      = "次";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txttime3
            //
            this.txttime3.AllowNegative    = false;
            this.txttime3.AutoPadRightZero = false;
            this.txttime3.Location         = new System.Drawing.Point(232, 104);
            this.txttime3.MaxDigits        = 0;
            this.txttime3.MaxLength        = 6;
            this.txttime3.Name             = "txttime3";
            this.txttime3.Size             = new System.Drawing.Size(32, 21);
            this.txttime3.TabIndex         = 34;
            this.txttime3.WillShowError    = false;
            this.txttime3.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.time3_KeyDown);
            //
            // dtenddate2
            //
            this.dtenddate2.Location = new System.Drawing.Point(576, 72);
            this.dtenddate2.Name     = "dtenddate2";
            this.dtenddate2.Size     = new System.Drawing.Size(112, 21);
            this.dtenddate2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtenddate2.TabIndex = 33;
            this.dtenddate2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.end_date2_KeyDown);
            //
            // label16
            //
            this.label16.Location  = new System.Drawing.Point(536, 72);
            this.label16.Name      = "label16";
            this.label16.Size      = new System.Drawing.Size(32, 23);
            this.label16.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label16.TabIndex  = 32;
            this.label16.Text      = "止日";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // dtbegindate2
            //
            this.dtbegindate2.Location = new System.Drawing.Point(408, 72);
            this.dtbegindate2.Name     = "dtbegindate2";
            this.dtbegindate2.Size     = new System.Drawing.Size(112, 21);
            this.dtbegindate2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtbegindate2.TabIndex = 31;
            this.dtbegindate2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.begin_date2_KeyDown);
            //
            // label17
            //
            this.label17.Location  = new System.Drawing.Point(376, 72);
            this.label17.Name      = "label17";
            this.label17.Size      = new System.Drawing.Size(32, 23);
            this.label17.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label17.TabIndex  = 30;
            this.label17.Text      = "起日";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label18
            //
            this.label18.Location  = new System.Drawing.Point(344, 72);
            this.label18.Name      = "label18";
            this.label18.Size      = new System.Drawing.Size(24, 23);
            this.label18.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label18.TabIndex  = 29;
            this.label18.Text      = "天";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtday2
            //
            this.txtday2.AllowNegative    = false;
            this.txtday2.AutoPadRightZero = false;
            this.txtday2.Location         = new System.Drawing.Point(304, 72);
            this.txtday2.MaxDigits        = 0;
            this.txtday2.MaxLength        = 6;
            this.txtday2.Name             = "txtday2";
            this.txtday2.Size             = new System.Drawing.Size(32, 21);
            this.txtday2.TabIndex         = 28;
            this.txtday2.WillShowError    = false;
            this.txtday2.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.day2_KeyDown);
            //
            // label19
            //
            this.label19.Location  = new System.Drawing.Point(272, 72);
            this.label19.Name      = "label19";
            this.label19.Size      = new System.Drawing.Size(24, 23);
            this.label19.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label19.TabIndex  = 27;
            this.label19.Text      = "次";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txttime2
            //
            this.txttime2.AllowNegative    = false;
            this.txttime2.AutoPadRightZero = false;
            this.txttime2.Location         = new System.Drawing.Point(232, 72);
            this.txttime2.MaxDigits        = 0;
            this.txttime2.MaxLength        = 6;
            this.txttime2.Name             = "txttime2";
            this.txttime2.Size             = new System.Drawing.Size(32, 21);
            this.txttime2.TabIndex         = 26;
            this.txttime2.WillShowError    = false;
            this.txttime2.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.time2_KeyDown);
            //
            // dtenddate1
            //
            this.dtenddate1.Location = new System.Drawing.Point(576, 40);
            this.dtenddate1.Name     = "dtenddate1";
            this.dtenddate1.Size     = new System.Drawing.Size(112, 21);
            this.dtenddate1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtenddate1.TabIndex = 25;
            this.dtenddate1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.end_date1_KeyDown);
            //
            // label15
            //
            this.label15.Location  = new System.Drawing.Point(536, 40);
            this.label15.Name      = "label15";
            this.label15.Size      = new System.Drawing.Size(32, 23);
            this.label15.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label15.TabIndex  = 24;
            this.label15.Text      = "止日";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // dtbegindate1
            //
            this.dtbegindate1.Location = new System.Drawing.Point(408, 40);
            this.dtbegindate1.Name     = "dtbegindate1";
            this.dtbegindate1.Size     = new System.Drawing.Size(112, 21);
            this.dtbegindate1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.dtbegindate1.TabIndex = 23;
            this.dtbegindate1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.begin_date1_KeyDown);
            //
            // label14
            //
            this.label14.Location  = new System.Drawing.Point(376, 40);
            this.label14.Name      = "label14";
            this.label14.Size      = new System.Drawing.Size(32, 23);
            this.label14.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label14.TabIndex  = 22;
            this.label14.Text      = "起日";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label13
            //
            this.label13.Location  = new System.Drawing.Point(344, 40);
            this.label13.Name      = "label13";
            this.label13.Size      = new System.Drawing.Size(24, 23);
            this.label13.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label13.TabIndex  = 21;
            this.label13.Text      = "天";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtday1
            //
            this.txtday1.AllowNegative    = false;
            this.txtday1.AutoPadRightZero = false;
            this.txtday1.Location         = new System.Drawing.Point(304, 40);
            this.txtday1.MaxDigits        = 0;
            this.txtday1.MaxLength        = 6;
            this.txtday1.Name             = "txtday1";
            this.txtday1.Size             = new System.Drawing.Size(32, 21);
            this.txtday1.TabIndex         = 20;
            this.txtday1.WillShowError    = false;
            this.txtday1.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.day1_KeyDown);
            //
            // label12
            //
            this.label12.Location  = new System.Drawing.Point(272, 40);
            this.label12.Name      = "label12";
            this.label12.Size      = new System.Drawing.Size(24, 23);
            this.label12.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label12.TabIndex  = 19;
            this.label12.Text      = "次";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txttime1
            //
            this.txttime1.AllowNegative    = false;
            this.txttime1.AutoPadRightZero = false;
            this.txttime1.Location         = new System.Drawing.Point(232, 40);
            this.txttime1.MaxDigits        = 0;
            this.txttime1.MaxLength        = 6;
            this.txttime1.Name             = "txttime1";
            this.txttime1.Size             = new System.Drawing.Size(32, 21);
            this.txttime1.TabIndex         = 18;
            this.txttime1.WillShowError    = false;
            this.txttime1.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.time1_KeyDown);
            //
            // label11
            //
            this.label11.AutoSize  = true;
            this.label11.Location  = new System.Drawing.Point(16, 104);
            this.label11.Name      = "label11";
            this.label11.Size      = new System.Drawing.Size(65, 12);
            this.label11.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label11.TabIndex  = 16;
            this.label11.Text      = "转移灶计量";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label8
            //
            this.label8.Location  = new System.Drawing.Point(192, 104);
            this.label8.Name      = "label8";
            this.label8.Size      = new System.Drawing.Size(24, 23);
            this.label8.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label8.TabIndex  = 14;
            this.label8.Text      = "GY";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtgy3
            //
            this.txtgy3.AllowNegative    = false;
            this.txtgy3.AutoPadRightZero = false;
            this.txtgy3.Location         = new System.Drawing.Point(88, 104);
            this.txtgy3.MaxDigits        = 0;
            this.txtgy3.MaxLength        = 6;
            this.txtgy3.Name             = "txtgy3";
            this.txtgy3.Size             = new System.Drawing.Size(100, 21);
            this.txtgy3.TabIndex         = 12;
            this.txtgy3.WillShowError    = false;
            this.txtgy3.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.gy3_KeyDown);
            //
            // label6
            //
            this.label6.Location  = new System.Drawing.Point(192, 72);
            this.label6.Name      = "label6";
            this.label6.Size      = new System.Drawing.Size(24, 23);
            this.label6.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label6.TabIndex  = 11;
            this.label6.Text      = "GY";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtgy2
            //
            this.txtgy2.AllowNegative    = false;
            this.txtgy2.AutoPadRightZero = false;
            this.txtgy2.Location         = new System.Drawing.Point(88, 72);
            this.txtgy2.MaxDigits        = 0;
            this.txtgy2.MaxLength        = 6;
            this.txtgy2.Name             = "txtgy2";
            this.txtgy2.Size             = new System.Drawing.Size(100, 21);
            this.txtgy2.TabIndex         = 9;
            this.txtgy2.WillShowError    = false;
            this.txtgy2.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.gy2_KeyDown);
            //
            // label7
            //
            this.label7.AutoSize  = true;
            this.label7.Location  = new System.Drawing.Point(16, 72);
            this.label7.Name      = "label7";
            this.label7.Size      = new System.Drawing.Size(65, 12);
            this.label7.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label7.TabIndex  = 10;
            this.label7.Text      = "区域淋巴结";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label5
            //
            this.label5.Location  = new System.Drawing.Point(192, 40);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(24, 23);
            this.label5.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label5.TabIndex  = 8;
            this.label5.Text      = "GY";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtgy1
            //
            this.txtgy1.AllowNegative    = false;
            this.txtgy1.AutoPadRightZero = false;
            this.txtgy1.Location         = new System.Drawing.Point(88, 40);
            this.txtgy1.MaxDigits        = 0;
            this.txtgy1.MaxLength        = 6;
            this.txtgy1.Name             = "txtgy1";
            this.txtgy1.Size             = new System.Drawing.Size(100, 21);
            this.txtgy1.TabIndex         = 6;
            this.txtgy1.WillShowError    = false;
            this.txtgy1.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.gy1_KeyDown);
            //
            // txtRdeviceid
            //
            this.txtRdeviceid.Location     = new System.Drawing.Point(520, 8);
            this.txtRdeviceid.MaxLength    = 5;
            this.txtRdeviceid.Name         = "txtRdeviceid";
            this.txtRdeviceid.Size         = new System.Drawing.Size(100, 21);
            this.txtRdeviceid.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txtRdeviceid.TabIndex     = 5;
            this.txtRdeviceid.Enter       += new System.EventHandler(this.Rdeviceid_Enter);
            this.txtRdeviceid.TextChanged += new System.EventHandler(this.Rdeviceid_TextChanged);
            this.txtRdeviceid.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Rdeviceid_KeyDown);
            //
            // txtRprocessid
            //
            this.txtRprocessid.Location     = new System.Drawing.Point(312, 8);
            this.txtRprocessid.MaxLength    = 5;
            this.txtRprocessid.Name         = "txtRprocessid";
            this.txtRprocessid.Size         = new System.Drawing.Size(100, 21);
            this.txtRprocessid.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txtRprocessid.TabIndex     = 4;
            this.txtRprocessid.Enter       += new System.EventHandler(this.Rprocessid_Enter);
            this.txtRprocessid.TextChanged += new System.EventHandler(this.Rprocessid_TextChanged);
            this.txtRprocessid.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Rprocessid_KeyDown);
            //
            // txtRmodeid
            //
            this.txtRmodeid.Location     = new System.Drawing.Point(88, 8);
            this.txtRmodeid.MaxLength    = 5;
            this.txtRmodeid.Name         = "txtRmodeid";
            this.txtRmodeid.Size         = new System.Drawing.Size(100, 21);
            this.txtRmodeid.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.txtRmodeid.TabIndex     = 3;
            this.txtRmodeid.Enter       += new System.EventHandler(this.Rmodeid_Enter);
            this.txtRmodeid.TextChanged += new System.EventHandler(this.Rmodeid_TextChanged);
            this.txtRmodeid.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Rmodeid_KeyDown);
            //
            // label3
            //
            this.label3.AutoSize  = true;
            this.label3.Location  = new System.Drawing.Point(432, 8);
            this.label3.Name      = "label3";
            this.label3.Size      = new System.Drawing.Size(53, 12);
            this.label3.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label3.TabIndex  = 2;
            this.label3.Text      = "放疗装置";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label2
            //
            this.label2.AutoSize  = true;
            this.label2.Location  = new System.Drawing.Point(232, 8);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(53, 12);
            this.label2.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label2.TabIndex  = 1;
            this.label2.Text      = "放疗程式";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label1
            //
            this.label1.AutoSize  = true;
            this.label1.Location  = new System.Drawing.Point(16, 8);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(53, 12);
            this.label1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label1.TabIndex  = 0;
            this.label1.Text      = "放疗方式";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label4
            //
            this.label4.AutoSize  = true;
            this.label4.Location  = new System.Drawing.Point(16, 40);
            this.label4.Name      = "label4";
            this.label4.Size      = new System.Drawing.Size(65, 12);
            this.label4.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label4.TabIndex  = 7;
            this.label4.Text      = "原发灶计量";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label28
            //
            this.label28.AutoSize  = true;
            this.label28.Location  = new System.Drawing.Point(16, 136);
            this.label28.Name      = "label28";
            this.label28.Size      = new System.Drawing.Size(53, 12);
            this.label28.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label28.TabIndex  = 50;
            this.label28.Text      = "化疗方式";
            this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // ucTumourCard
            //
            this.ContextMenu = this.contextMenu1;
            this.Controls.Add(this.fpEnter1);
            this.Controls.Add(this.panel1);
            this.Name  = "ucTumourCard";
            this.Size  = new System.Drawing.Size(840, 552);
            this.Load += new System.EventHandler(this.ucTumourCard_Load);
            ((System.ComponentModel.ISupportInitialize)(this.fpEnter1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpEnter1_Sheet1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ucTabulation));
            this.panel1          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.panel3          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.tabControl1     = new Crownwood.Magic.Controls.TabControl();
            this.tabPage1        = new Crownwood.Magic.Controls.TabPage();
            this.ucTabular1      = new ucTabular();
            this.splitter1       = new Neusoft.FrameWork.WinForms.Controls.NeuSplitter();
            this.panel2          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.panel5          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.dateTimePicker1 = new Neusoft.FrameWork.WinForms.Controls.NeuDateTimePicker();
            this.label2          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.groupBox1       = new Neusoft.FrameWork.WinForms.Controls.NeuGroupBox();
            this.treeView1       = new Neusoft.HISFC.Components.Common.Controls.baseTreeView();
            this.splitter2       = new Neusoft.FrameWork.WinForms.Controls.NeuSplitter();
            this.panel4          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.groupBox2       = new Neusoft.FrameWork.WinForms.Controls.NeuGroupBox();
            this.tvDept          = new Neusoft.HISFC.Components.Common.Controls.baseTreeView();
            this.label1          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel5.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.panel4.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            //
            // panel1
            //
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.panel1.Controls.Add(this.panel3);
            this.panel1.Controls.Add(this.splitter1);
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Location = new System.Drawing.Point(0, 42);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(737, 501);
            this.panel1.TabIndex = 2;
            //
            // panel3
            //
            this.panel3.BackColor = System.Drawing.SystemColors.HighlightText;
            this.panel3.Controls.Add(this.tabControl1);
            this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(194, 0);
            this.panel3.Name     = "panel3";
            this.panel3.Size     = new System.Drawing.Size(543, 501);
            this.panel3.TabIndex = 2;
            //
            // tabControl1
            //
            this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.IDEPixelArea  = true;
            this.tabControl1.Location      = new System.Drawing.Point(0, 0);
            this.tabControl1.Name          = "tabControl1";
            this.tabControl1.PositionTop   = true;
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.SelectedTab   = this.tabPage1;
            this.tabControl1.Size          = new System.Drawing.Size(543, 501);
            this.tabControl1.TabIndex      = 0;
            this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
                this.tabPage1
            });
            //
            // tabPage1
            //
            this.tabPage1.Controls.Add(this.ucTabular1);
            this.tabPage1.Location = new System.Drawing.Point(0, 25);
            this.tabPage1.Name     = "tabPage1";
            this.tabPage1.Size     = new System.Drawing.Size(543, 476);
            this.tabPage1.TabIndex = 3;
            this.tabPage1.Title    = "排班信息";
            //
            // ucTabular1
            //
            this.ucTabular1.BackColor = System.Drawing.SystemColors.Window;
            this.ucTabular1.Dock      = System.Windows.Forms.DockStyle.Fill;
            this.ucTabular1.Location  = new System.Drawing.Point(0, 0);
            this.ucTabular1.Name      = "ucTabular1";
            this.ucTabular1.Size      = new System.Drawing.Size(543, 476);
            this.ucTabular1.TabIndex  = 0;
            //
            // splitter1
            //
            this.splitter1.BackColor = System.Drawing.SystemColors.Control;
            this.splitter1.Location  = new System.Drawing.Point(193, 0);
            this.splitter1.Name      = "splitter1";
            this.splitter1.Size      = new System.Drawing.Size(1, 501);
            this.splitter1.TabIndex  = 1;
            this.splitter1.TabStop   = false;
            //
            // panel2
            //
            this.panel2.BackColor = System.Drawing.Color.FloralWhite;
            this.panel2.Controls.Add(this.panel5);
            this.panel2.Controls.Add(this.splitter2);
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(193, 501);
            this.panel2.TabIndex = 0;
            //
            // panel5
            //
            this.panel5.BackColor = System.Drawing.Color.FloralWhite;
            this.panel5.Controls.Add(this.dateTimePicker1);
            this.panel5.Controls.Add(this.label2);
            this.panel5.Controls.Add(this.groupBox1);
            this.panel5.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel5.Location = new System.Drawing.Point(0, 388);
            this.panel5.Name     = "panel5";
            this.panel5.Size     = new System.Drawing.Size(193, 113);
            this.panel5.TabIndex = 2;
            //
            // dateTimePicker1
            //
            this.dateTimePicker1.CustomFormat  = "yyyy年M月";
            this.dateTimePicker1.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dateTimePicker1.Location      = new System.Drawing.Point(12, 5);
            this.dateTimePicker1.Name          = "dateTimePicker1";
            this.dateTimePicker1.Size          = new System.Drawing.Size(85, 21);
            this.dateTimePicker1.TabIndex      = 2;
            this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(102, 9);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(68, 14);
            this.label2.TabIndex = 0;
            this.label2.Text     = "排班记录:";
            //
            // groupBox1
            //
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.treeView1);
            this.groupBox1.Location = new System.Drawing.Point(0, 25);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(193, 88);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            //
            // treeView1
            //
            this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.treeView1.ImageIndex  = 22;
            this.treeView1.Location    = new System.Drawing.Point(3, 7);
            this.treeView1.Name        = "treeView1";
            this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
                new System.Windows.Forms.TreeNode("已排班记录", 22, 22)
            });
            this.treeView1.Size         = new System.Drawing.Size(187, 78);
            this.treeView1.TabIndex     = 0;
            this.treeView1.DoubleClick += new System.EventHandler(this.treeView1_DoubleClick);
            //
            // splitter2
            //
            this.splitter2.Dock     = System.Windows.Forms.DockStyle.Top;
            this.splitter2.Location = new System.Drawing.Point(0, 385);
            this.splitter2.Name     = "splitter2";
            this.splitter2.Size     = new System.Drawing.Size(193, 3);
            this.splitter2.TabIndex = 1;
            this.splitter2.TabStop  = false;
            //
            // panel4
            //
            this.panel4.BackColor = System.Drawing.Color.FloralWhite;
            this.panel4.Controls.Add(this.groupBox2);
            this.panel4.Controls.Add(this.label1);
            this.panel4.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name     = "panel4";
            this.panel4.Size     = new System.Drawing.Size(193, 385);
            this.panel4.TabIndex = 0;
            //
            // groupBox2
            //
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.tvDept);
            this.groupBox2.Font     = new System.Drawing.Font("宋体", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.groupBox2.Location = new System.Drawing.Point(0, 25);
            this.groupBox2.Name     = "groupBox2";
            this.groupBox2.Size     = new System.Drawing.Size(193, 360);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop  = false;
            //
            // tvDept
            //
            this.tvDept.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.tvDept.BorderStyle  = System.Windows.Forms.BorderStyle.None;
            this.tvDept.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.tvDept.Location     = new System.Drawing.Point(3, 7);
            this.tvDept.Name         = "tvDept";
            this.tvDept.Size         = new System.Drawing.Size(187, 350);
            this.tvDept.TabIndex     = 0;
            this.tvDept.DoubleClick += new System.EventHandler(this.tvDept_DoubleClick);
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(12, 10);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(100, 17);
            this.label1.TabIndex = 0;
            this.label1.Text     = "科室列表:";
            //
            // frmTabulation
            //
            this.ClientSize = new System.Drawing.Size(737, 568);
            this.Controls.Add(this.panel1);
            this.Name = "ucTabulation";
            this.Text = "排班管理";
            this.Controls.SetChildIndex(this.panel1, 0);
            this.panel1.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.ResumeLayout(false);
        }