예제 #1
0
        //打印
        /// <summary>
        /// 条码打印{D2F77BDA-F5E5-48fe-AB73-B7FE6D92E6E2}
        /// </summary>
        public void PrintBar()
        {
            Neusoft.HISFC.BizProcess.Interface.Registration.IPrintBar ip = Neusoft.FrameWork.WinForms.Classes.UtilInterface.CreateObject(this.GetType(), typeof(Neusoft.HISFC.BizProcess.Interface.Registration.IPrintBar))
                                                                           as Neusoft.HISFC.BizProcess.Interface.Registration.IPrintBar;
            if (ip == null)//默认实现打印
            {
                if (string.IsNullOrEmpty(CardNO))
                {
                    MessageBox.Show("病历号为空,不能打印");
                    return;
                }

                Neusoft.FrameWork.WinForms.Controls.ucBaseControl uc = new Neusoft.FrameWork.WinForms.Controls.ucBaseControl();
                Neusoft.FrameWork.WinForms.Controls.NeuPictureBox p  = new Neusoft.FrameWork.WinForms.Controls.NeuPictureBox();
                p.Image = Neusoft.FrameWork.WinForms.Classes.CodePrint.GetCode39(CardNO);
                Neusoft.FrameWork.WinForms.Controls.NeuPanel pn = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
                pn.Controls.Add(p);
                pn.BackColor = Color.White;
                uc.Controls.Add(pn);
                uc.BackColor = Color.White;

                Neusoft.FrameWork.WinForms.Classes.Print print = new Neusoft.FrameWork.WinForms.Classes.Print();
                print.PrintPage(0, 0, uc);
            }
            else //接口实现打印
            {
                string errText     = string.Empty;
                int    returnValue = ip.printBar((patientInfo as Neusoft.HISFC.Models.RADT.Patient), ref errText);
                if (returnValue < 0)
                {
                    MessageBox.Show(errText);
                    return;
                }
            }
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.ucDiagCheck = new ucDiagnoseCheck();
            this.tbReturn    = new System.Windows.Forms.Button();
            this.panel1      = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.label1      = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // ucDiagCheck
            //
            this.ucDiagCheck.AutoScroll = true;
            this.ucDiagCheck.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.ucDiagCheck.Location   = new System.Drawing.Point(0, 0);
            this.ucDiagCheck.Name       = "ucDiagCheck";
            this.ucDiagCheck.Size       = new System.Drawing.Size(584, 245);
            this.ucDiagCheck.TabIndex   = 0;
            //
            // tbReturn
            //
            this.tbReturn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.tbReturn.Location = new System.Drawing.Point(496, 8);
            this.tbReturn.Name     = "tbReturn";
            this.tbReturn.TabIndex = 1;
            this.tbReturn.Text     = "关闭";
            this.tbReturn.Click   += new System.EventHandler(this.tbReturn_Click);
            //
            // panel1
            //
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.tbReturn);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
            this.panel1.Location = new System.Drawing.Point(0, 213);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(584, 32);
            this.panel1.TabIndex = 3;
            //
            // label1
            //
            this.label1.Dock      = System.Windows.Forms.DockStyle.Left;
            this.label1.ForeColor = System.Drawing.Color.Maroon;
            this.label1.Location  = new System.Drawing.Point(0, 0);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(464, 32);
            this.label1.TabIndex  = 2;
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // ucDiagNoseCheck
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize        = new System.Drawing.Size(584, 245);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.ucDiagCheck);
            this.Name          = "ucDiagNoseCheck";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "诊断提示";
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
예제 #3
0
        /// <summary>
        /// {46063507-0C5A-405d-BD9D-4762ADE8DE02}
        /// </summary>
        public void PrintCard()
        {
            Neusoft.FrameWork.WinForms.Controls.NeuPanel np = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();

            ArrayList al = new ArrayList();

            foreach (Control c in this.Controls)
            {
                if (c.GetType() == typeof(ucPatientCard))
                {
                    ucPatientCard uc = c as ucPatientCard;
                    if (uc.BackColor == Color.Blue)
                    {
                        al.Add(uc.ControlValue);
                    }
                }
            }

            Neusoft.FrameWork.WinForms.Classes.Function.AddControlToPanel(al, typeof(ucPatientCard), np, new System.Drawing.Size(791, 1150));



            Neusoft.FrameWork.WinForms.Classes.Print p = new Neusoft.FrameWork.WinForms.Classes.Print();
            //p.SetPageSize(System.Drawing.Printing.PaperKind.A4);
            //Panel ppp = new Panel();
            //ppp.Size = new Size(791, 1200);
            //ppp.BackColor = Color.Blue;

            if (al.Count == 0)
            {
                p.PrintPreview(0, 0, this);
            }
            else
            {
                p.PrintPreview(0, 0, np);
            }
            np.Dispose();
        }
예제 #4
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.contextMenu1     = new System.Windows.Forms.ContextMenu();
            this.menuItem2        = new System.Windows.Forms.MenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                = new System.Drawing.Size(800, 600);
            this.fpSpread1.TabIndex            = 0;
            this.fpSpread1.EditModeOn         += new System.EventHandler(this.fpSpread1_EditModeOn);
            this.fpSpread1.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fpSpread1_ColumnWidthChanged);
            this.fpSpread1.EditChange         += new FarPoint.Win.Spread.EditorNotifyEventHandler(this.fpSpread1_EditChange);
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.ColumnHeader.RowCount = 2;
            this.fpSpread1_Sheet1.RowHeader.ColumnCount = 0;
            this.fpSpread1_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, false);
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Text              = "手术、操作日期";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Text              = "手术、操作名称";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).ColumnSpan        = 4;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Text              = "手术、操作医师";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Text              = "麻醉方式";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Text              = "切口愈合等级";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Text              = "麻醉医师";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.General;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).RowSpan           = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Text              = "ICD-9-CM-3编号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Text             = "切口";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Text             = "愈合";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).Text             = "统计";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 13).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 13).Text             = "医师代码1";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 14).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 14).Text             = "医师代码2";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 15).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 15).Text             = "助手编码1";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 16).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 16).Text             = "助手编码2";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 17).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 17).Text             = "麻醉医师编码";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 18).RowSpan          = 2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 18).Text             = "发生序号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 2).Text              = "术者A";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 3).Text              = "术者B";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 4).Text              = "I 助";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(1, 5).Text              = "II 助";
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor            = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = true;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.RowHeader.Visible          = false;
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.SheetName = "Sheet1";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.fpSpread1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(800, 600);
            this.panel1.TabIndex = 1;
            //
            // 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);
            //
            // ucOperation
            //
            this.ContextMenu = this.contextMenu1;
            this.Controls.Add(this.panel1);
            this.Name  = "ucOperation";
            this.Size  = new System.Drawing.Size(800, 600);
            this.Load += new System.EventHandler(this.ucOperation_Load);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            this.cmQuery          = new System.Windows.Forms.ContextMenu();
            this.mAll             = new System.Windows.Forms.MenuItem();
            this.mValid           = new System.Windows.Forms.MenuItem();
            this.mStop            = new System.Windows.Forms.MenuItem();
            this.statusBar1       = new System.Windows.Forms.StatusBar();
            this.sbpOper          = new System.Windows.Forms.StatusBarPanel();
            this.sbpSelectObj     = new System.Windows.Forms.StatusBarPanel();
            this.groupBox1        = new System.Windows.Forms.GroupBox();
            this.Search           = new System.Windows.Forms.Button();
            this.cancerFlag       = new Neusoft.FrameWork.WinForms.Controls.NeuCheckBox();
            this.infectFlag       = new Neusoft.FrameWork.WinForms.Controls.NeuCheckBox();
            this.cb30dis          = new Neusoft.FrameWork.WinForms.Controls.NeuCheckBox();
            this.textBox1         = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label1           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            ((System.ComponentModel.ISupportInitialize)(this.sbpOper)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sbpSelectObj)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // cmQuery
            //
            this.cmQuery.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                this.mAll,
                this.mValid,
                this.mStop
            });
            //
            // mAll
            //
            this.mAll.Index  = 0;
            this.mAll.Text   = "所有(&A)";
            this.mAll.Click += new System.EventHandler(this.mAll_Click);
            //
            // mValid
            //
            this.mValid.Index  = 1;
            this.mValid.Text   = "有效(V)";
            this.mValid.Click += new System.EventHandler(this.mValid_Click);
            //
            // mStop
            //
            this.mStop.Index  = 2;
            this.mStop.Text   = "无效(S)";
            this.mStop.Click += new System.EventHandler(this.mStop_Click);
            //
            // statusBar1
            //
            this.statusBar1.Location = new System.Drawing.Point(0, 578);
            this.statusBar1.Name     = "statusBar1";
            this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
                this.sbpOper,
                this.sbpSelectObj
            });
            this.statusBar1.Size       = new System.Drawing.Size(800, 22);
            this.statusBar1.SizingGrip = false;
            this.statusBar1.TabIndex   = 2;
            //
            // sbpOper
            //
            this.sbpOper.Name = "sbpOper";
            this.sbpOper.Text = "操作员";
            //
            // sbpSelectObj
            //
            this.sbpSelectObj.Name = "sbpSelectObj";
            this.sbpSelectObj.Text = "项目:";
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.Search);
            this.groupBox1.Controls.Add(this.cancerFlag);
            this.groupBox1.Controls.Add(this.infectFlag);
            this.groupBox1.Controls.Add(this.cb30dis);
            this.groupBox1.Controls.Add(this.textBox1);
            this.groupBox1.Controls.Add(this.label1);
            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, 39);
            this.groupBox1.TabIndex = 4;
            this.groupBox1.TabStop  = false;
            //
            // Search
            //
            this.Search.Location = new System.Drawing.Point(192, 10);
            this.Search.Name     = "Search";
            this.Search.Size     = new System.Drawing.Size(75, 23);
            this.Search.TabIndex = 5;
            this.Search.Text     = "星键互查";
            this.Search.Click   += new System.EventHandler(this.Search_Click);
            //
            // cancerFlag
            //
            this.cancerFlag.Location        = new System.Drawing.Point(576, 12);
            this.cancerFlag.Name            = "cancerFlag";
            this.cancerFlag.Size            = new System.Drawing.Size(80, 24);
            this.cancerFlag.Style           = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.cancerFlag.TabIndex        = 4;
            this.cancerFlag.Text            = "恶性肿瘤";
            this.cancerFlag.Visible         = false;
            this.cancerFlag.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
            //
            // infectFlag
            //
            this.infectFlag.Location        = new System.Drawing.Point(456, 12);
            this.infectFlag.Name            = "infectFlag";
            this.infectFlag.Size            = new System.Drawing.Size(104, 24);
            this.infectFlag.Style           = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.infectFlag.TabIndex        = 3;
            this.infectFlag.Text            = "传染病";
            this.infectFlag.Visible         = false;
            this.infectFlag.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
            //
            // cb30dis
            //
            this.cb30dis.Location        = new System.Drawing.Point(352, 12);
            this.cb30dis.Name            = "cb30dis";
            this.cb30dis.Size            = new System.Drawing.Size(80, 24);
            this.cb30dis.Style           = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.cb30dis.TabIndex        = 2;
            this.cb30dis.Text            = "30种疾病";
            this.cb30dis.Visible         = false;
            this.cb30dis.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            //
            // textBox1
            //
            this.textBox1.Location     = new System.Drawing.Point(64, 12);
            this.textBox1.Name         = "textBox1";
            this.textBox1.Size         = new System.Drawing.Size(100, 21);
            this.textBox1.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBox1.TabIndex     = 1;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            //
            // label1
            //
            this.label1.Location  = new System.Drawing.Point(8, 15);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(48, 16);
            this.label1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label1.TabIndex  = 0;
            this.label1.Text      = "查询:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // panel1
            //
            this.panel1.Controls.Add(this.fpSpread1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 39);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(800, 539);
            this.panel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel1.TabIndex = 5;
            //
            // fpSpread1
            //
            this.fpSpread1.About = "2.5.2007.2005";
            this.fpSpread1.AccessibleDescription = "fpSpread1, Sheet1, Row 0, Column 0, ";
            this.fpSpread1.BackColor             = System.Drawing.SystemColors.Control;
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                = new System.Drawing.Size(800, 539);
            this.fpSpread1.TabIndex            = 0;
            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.CellDoubleClick    += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellDoubleClick);
            this.fpSpread1.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fpSpread1_ColumnWidthChanged);
            //
            // 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.ColumnHeader.Rows.Get(0).Height = 40F;
            this.fpSpread1_Sheet1.OperationMode = FarPoint.Win.Spread.OperationMode.RowMode;
            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;
            //
            // ucICDMaint
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.statusBar1);
            this.Name  = "ucICDMaint";
            this.Size  = new System.Drawing.Size(800, 600);
            this.Load += new System.EventHandler(this.ucICDMaint_Load);
            ((System.ComponentModel.ISupportInitialize)(this.sbpOper)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sbpSelectObj)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }
예제 #6
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器
        /// 修改此方法的内容。
        /// </summary>
        protected void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ucChooseList));
            this.fpChooseList        = new FarPoint.Win.Spread.FpSpread();
            this.fpChooseList_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.label1       = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.groupBox1    = new Neusoft.FrameWork.WinForms.Controls.NeuGroupBox();
            this.lblCaption   = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.txtQueryCode = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.panelData    = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.tvList       = new System.Windows.Forms.TreeView();
            this.btn1         = new Neusoft.FrameWork.WinForms.Controls.NeuButton();
            this.btnClose     = new Neusoft.FrameWork.WinForms.Controls.NeuButton();
            ((System.ComponentModel.ISupportInitialize)(this.fpChooseList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpChooseList_Sheet1)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.panelData.SuspendLayout();
            this.SuspendLayout();
            //
            // fpChooseList
            //
            this.fpChooseList.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.fpChooseList.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpChooseList.Location = new System.Drawing.Point(0, 24);
            this.fpChooseList.Name     = "fpChooseList";
            this.fpChooseList.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpChooseList_Sheet1
            });
            this.fpChooseList.Size     = new System.Drawing.Size(351, 317);
            this.fpChooseList.TabIndex = 1;
            this.fpChooseList.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // fpChooseList_Sheet1
            //
            this.fpChooseList_Sheet1.Reset();
            this.fpChooseList_Sheet1.ColumnCount = 13;
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 0).Text   = "药品编码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 1).Text   = "商品名称";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 2).Text   = "规格";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 3).Text   = "零售价";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 4).Text   = "包装单位";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 5).Text   = "包装数量";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 6).Text   = "拼音码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 7).Text   = "五笔码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 8).Text   = "自定义码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 9).Text   = "通用名";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 10).Text  = "通用名拼音码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 11).Text  = "通用名五笔码";
            this.fpChooseList_Sheet1.ColumnHeader.Cells.Get(0, 12).Text  = "通用名自定义码";
            this.fpChooseList_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.SystemColors.Control;
            this.fpChooseList_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpChooseList_Sheet1.ColumnHeader.Rows.Get(0).Height     = 23F;
            this.fpChooseList_Sheet1.Columns.Get(0).Label               = "药品编码";
            this.fpChooseList_Sheet1.Columns.Get(0).Visible             = false;
            this.fpChooseList_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpChooseList_Sheet1.Columns.Get(1).Label               = "商品名称";
            this.fpChooseList_Sheet1.Columns.Get(1).Width               = 136F;
            this.fpChooseList_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpChooseList_Sheet1.Columns.Get(2).Label               = "规格";
            this.fpChooseList_Sheet1.Columns.Get(2).Width               = 76F;
            this.fpChooseList_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpChooseList_Sheet1.Columns.Get(3).Label               = "零售价";
            this.fpChooseList_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpChooseList_Sheet1.Columns.Get(4).Label               = "包装单位";
            this.fpChooseList_Sheet1.Columns.Get(4).Width               = 57F;
            this.fpChooseList_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpChooseList_Sheet1.Columns.Get(5).Label               = "包装数量";
            this.fpChooseList_Sheet1.Columns.Get(5).Width               = 58F;
            this.fpChooseList_Sheet1.Columns.Get(6).Label               = "拼音码";
            this.fpChooseList_Sheet1.Columns.Get(6).Visible             = false;
            this.fpChooseList_Sheet1.Columns.Get(7).Label               = "五笔码";
            this.fpChooseList_Sheet1.Columns.Get(7).Visible             = false;
            this.fpChooseList_Sheet1.Columns.Get(8).Label               = "自定义码";
            this.fpChooseList_Sheet1.Columns.Get(8).Visible             = false;
            this.fpChooseList_Sheet1.Columns.Get(9).Label               = "通用名";
            this.fpChooseList_Sheet1.Columns.Get(9).Visible             = false;
            this.fpChooseList_Sheet1.Columns.Get(10).Label              = "通用名拼音码";
            this.fpChooseList_Sheet1.Columns.Get(10).Visible            = false;
            this.fpChooseList_Sheet1.Columns.Get(11).Label              = "通用名五笔码";
            this.fpChooseList_Sheet1.Columns.Get(11).Visible            = false;
            this.fpChooseList_Sheet1.Columns.Get(12).Label              = "通用名自定义码";
            this.fpChooseList_Sheet1.Columns.Get(12).Visible            = false;
            this.fpChooseList_Sheet1.DefaultStyle.Parent            = "DataAreaDefault";
            this.fpChooseList_Sheet1.DefaultStyle.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpChooseList_Sheet1.GrayAreaBackColor = System.Drawing.Color.White;
            this.fpChooseList_Sheet1.OperationMode     = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpChooseList_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpChooseList_Sheet1.RowHeader.Visible   = false;
            this.fpChooseList_Sheet1.Rows.Default.Height = 21F;
            this.fpChooseList_Sheet1.SelectionPolicy     = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpChooseList_Sheet1.SelectionUnit       = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpChooseList_Sheet1.SheetName           = "Sheet1";
            //
            // label1
            //
            this.label1.Location  = new System.Drawing.Point(5, 3);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(48, 19);
            this.label1.TabIndex  = 2;
            this.label1.Text      = "查询码:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // groupBox1
            //
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.btn1);
            this.groupBox1.Controls.Add(this.btnClose);
            this.groupBox1.Controls.Add(this.lblCaption);
            this.groupBox1.Location = new System.Drawing.Point(0, -6);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(351, 26);
            this.groupBox1.TabIndex = 5;
            this.groupBox1.TabStop  = false;
            //
            // lblCaption
            //
            this.lblCaption.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.lblCaption.Location = new System.Drawing.Point(4, 9);
            this.lblCaption.Name     = "lblCaption";
            this.lblCaption.Size     = new System.Drawing.Size(152, 13);
            this.lblCaption.TabIndex = 0;
            this.lblCaption.Text     = "选择项目";
            //
            // txtQueryCode
            //
            this.txtQueryCode.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
            this.txtQueryCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtQueryCode.Location        = new System.Drawing.Point(52, 2);
            this.txtQueryCode.Name            = "txtQueryCode";
            this.txtQueryCode.Size            = new System.Drawing.Size(299, 21);
            this.txtQueryCode.TabIndex        = 0;
            this.txtQueryCode.Text            = "";
            this.txtQueryCode.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.txtQueryCode_KeyDown);
            //
            // panelData
            //
            this.panelData.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.panelData.Controls.Add(this.label1);
            this.panelData.Controls.Add(this.txtQueryCode);
            this.panelData.Controls.Add(this.fpChooseList);
            this.panelData.Location = new System.Drawing.Point(0, 21);
            this.panelData.Name     = "panelData";
            this.panelData.Size     = new System.Drawing.Size(353, 342);
            this.panelData.TabIndex = 7;
            //
            // tvList
            //
            this.tvList.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.tvList.Font               = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.tvList.HideSelection      = false;
            this.tvList.ImageIndex         = -1;
            this.tvList.Location           = new System.Drawing.Point(0, 21);
            this.tvList.Name               = "tvList";
            this.tvList.SelectedImageIndex = -1;
            this.tvList.Size               = new System.Drawing.Size(351, 342);
            this.tvList.TabIndex           = 8;
            this.tvList.Visible            = false;
            //
            // btn1
            //
            this.btn1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btn1.Image     = ((System.Drawing.Image)(resources.GetObject("btn1.Image")));
            this.btn1.Location  = new System.Drawing.Point(320, 8);
            this.btn1.Name      = "btn1";
            this.btn1.Size      = new System.Drawing.Size(13, 15);
            this.btn1.TabIndex  = 4;
            this.btn1.TabStop   = false;
            this.btn1.Visible   = false;
            //
            // btnClose
            //
            this.btnClose.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnClose.Image     = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
            this.btnClose.Location  = new System.Drawing.Point(335, 8);
            this.btnClose.Name      = "btnClose";
            this.btnClose.Size      = new System.Drawing.Size(13, 15);
            this.btnClose.TabIndex  = 3;
            this.btnClose.TabStop   = false;
            this.btnClose.Visible   = false;
            //
            // ucChooseList
            //
            this.Controls.Add(this.panelData);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.tvList);
            this.Name  = "ucChooseList";
            this.Size  = new System.Drawing.Size(352, 363);
            this.Load += new System.EventHandler(this.ucChooseList_Load);
            ((System.ComponentModel.ISupportInitialize)(this.fpChooseList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpChooseList_Sheet1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.panelData.ResumeLayout(false);
            this.ResumeLayout(false);

            Neusoft.FrameWork.WinForms.Classes.Function.SetFarPointStyle(fpChooseList);
        }
예제 #7
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            FarPoint.Win.Spread.TipAppearance tipAppearance2 = new FarPoint.Win.Spread.TipAppearance();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.treeView1        = new Neusoft.FrameWork.WinForms.Controls.ucChooseList();
            this.ilTreeView       = new System.Windows.Forms.ImageList(this.components);
            this.toolBar1         = new System.Windows.Forms.ToolBar();
            this.tbPrint          = new System.Windows.Forms.ToolBarButton();
            this.tbList           = new System.Windows.Forms.ToolBarButton();
            this.tbExist          = new System.Windows.Forms.ToolBarButton();
            this.ilMenu           = new System.Windows.Forms.ImageList(this.components);
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.LBSeacheInfo     = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel2           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuPanel1        = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.neuPanel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.About = "3.0.2004.2005";
            this.fpSpread1.AccessibleDescription = "";
            this.fpSpread1.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size              = new System.Drawing.Size(568, 459);
            this.fpSpread1.TabIndex          = 1;
            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.fpSpread1.TextTipAppearance = tipAppearance2;
            //
            // 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.ActiveSkin     = FarPoint.Win.Spread.DefaultSkins.Classic2;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Locked    = false;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.DefaultStyle.ForeColor = System.Drawing.Color.Black;
            this.fpSpread1_Sheet1.DefaultStyle.Locked    = false;
            this.fpSpread1_Sheet1.DefaultStyle.Parent    = "DataAreaDefault";
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.Columns.Get(0).Width      = 40F;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Locked       = false;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.SheetCornerStyle.ForeColor          = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Locked             = false;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent             = "HeaderDefault";
            this.fpSpread1_Sheet1.VisualStyles   = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // treeView1
            //
            this.treeView1.Caption           = "选择项目";
            this.treeView1.Dock              = System.Windows.Forms.DockStyle.Left;
            this.treeView1.IsShowCloseButton = true;
            this.treeView1.IsShowTreeView    = true;
            this.treeView1.Location          = new System.Drawing.Point(0, 0);
            this.treeView1.Name              = "treeView1";
            this.treeView1.Size              = new System.Drawing.Size(208, 459);
            this.treeView1.TabIndex          = 2;
            //
            // ilTreeView
            //
            this.ilTreeView.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
            this.ilTreeView.ImageSize        = new System.Drawing.Size(16, 16);
            this.ilTreeView.TransparentColor = System.Drawing.Color.Transparent;
            //
            // toolBar1
            //
            this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                this.tbPrint,
                this.tbList,
                this.tbExist
            });
            this.toolBar1.DropDownArrows = true;
            this.toolBar1.ImageList      = this.ilMenu;
            this.toolBar1.Location       = new System.Drawing.Point(0, 0);
            this.toolBar1.Name           = "toolBar1";
            this.toolBar1.ShowToolTips   = true;
            this.toolBar1.Size           = new System.Drawing.Size(776, 57);
            this.toolBar1.TabIndex       = 3;
            this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
            //
            // tbPrint
            //
            this.tbPrint.ImageIndex = 12;
            this.tbPrint.Name       = "tbPrint";
            this.tbPrint.Text       = "打印";
            //
            // tbList
            //
            this.tbList.ImageIndex = 7;
            this.tbList.Name       = "tbList";
            this.tbList.Text       = "列表";
            //
            // tbExist
            //
            this.tbExist.ImageIndex = 14;
            this.tbExist.Name       = "tbExist";
            this.tbExist.Text       = "退出";
            //
            // ilMenu
            //
            this.ilMenu.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
            this.ilMenu.ImageSize        = new System.Drawing.Size(32, 32);
            this.ilMenu.TransparentColor = System.Drawing.Color.Transparent;
            //
            // panel1
            //
            this.panel1.BackColor = System.Drawing.Color.MintCream;
            this.panel1.Controls.Add(this.LBSeacheInfo);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 57);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(776, 49);
            this.panel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel1.TabIndex = 4;
            //
            // LBSeacheInfo
            //
            this.LBSeacheInfo.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.LBSeacheInfo.Location = new System.Drawing.Point(0, 0);
            this.LBSeacheInfo.Name     = "LBSeacheInfo";
            this.LBSeacheInfo.Size     = new System.Drawing.Size(776, 49);
            this.LBSeacheInfo.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.LBSeacheInfo.TabIndex = 0;
            //
            // panel2
            //
            this.panel2.Controls.Add(this.neuPanel1);
            this.panel2.Controls.Add(this.treeView1);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 106);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(776, 459);
            this.panel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel2.TabIndex = 5;
            //
            // neuPanel1
            //
            this.neuPanel1.BackColor = System.Drawing.SystemColors.Window;
            this.neuPanel1.Controls.Add(this.fpSpread1);
            this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel1.Location = new System.Drawing.Point(208, 0);
            this.neuPanel1.Name     = "neuPanel1";
            this.neuPanel1.Size     = new System.Drawing.Size(568, 459);
            this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel1.TabIndex = 3;
            //
            // frmShowResult
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize        = new System.Drawing.Size(776, 565);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.toolBar1);
            this.Name          = "frmShowResult";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "查询结果显示";
            this.Load         += new System.EventHandler(this.frmShowResult_Load);
            this.Closing      += new System.ComponentModel.CancelEventHandler(this.frmShowResult_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.neuPanel1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
예제 #8
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.Spread.TipAppearance tipAppearance2 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.Spread.TipAppearance tipAppearance3 = new FarPoint.Win.Spread.TipAppearance();
            this.groupBox1        = new System.Windows.Forms.GroupBox();
            this.textSearchICD10  = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.textSearchICD9   = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.textBox5         = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.textBox6         = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label6           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.textBoxICD9Name  = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.textBoxICD9      = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.textBoxICD10Name = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label5           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.label4           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.textBoxICD10     = 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.tabControl1      = new System.Windows.Forms.TabControl();
            this.ICD9             = new System.Windows.Forms.TabPage();
            this.panel2           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.fpSpread2        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread2_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.ICD10            = new System.Windows.Forms.TabPage();
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.Compare          = new System.Windows.Forms.TabPage();
            this.panel3           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.fpSpread3        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread3_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.ICD9.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2_Sheet1)).BeginInit();
            this.ICD10.SuspendLayout();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.Compare.SuspendLayout();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread3_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.textSearchICD10);
            this.groupBox1.Controls.Add(this.textSearchICD9);
            this.groupBox1.Controls.Add(this.textBox5);
            this.groupBox1.Controls.Add(this.textBox6);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.textBoxICD9Name);
            this.groupBox1.Controls.Add(this.textBoxICD9);
            this.groupBox1.Controls.Add(this.textBoxICD10Name);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.textBoxICD10);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label1);
            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, 111);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop  = false;
            //
            // textSearchICD10
            //
            this.textSearchICD10.Location     = new System.Drawing.Point(120, 56);
            this.textSearchICD10.MaxLength    = 20;
            this.textSearchICD10.Name         = "textSearchICD10";
            this.textSearchICD10.Size         = new System.Drawing.Size(100, 21);
            this.textSearchICD10.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textSearchICD10.TabIndex     = 1;
            this.textSearchICD10.Enter       += new System.EventHandler(this.textSearchICD10_Enter);
            this.textSearchICD10.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.textSearchICD10_KeyPress);
            this.textSearchICD10.TextChanged += new System.EventHandler(this.textSearchICD10_TextChanged);
            this.textSearchICD10.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.textSearchICD10_KeyDown);
            //
            // textSearchICD9
            //
            this.textSearchICD9.Location     = new System.Drawing.Point(120, 32);
            this.textSearchICD9.MaxLength    = 20;
            this.textSearchICD9.Name         = "textSearchICD9";
            this.textSearchICD9.Size         = new System.Drawing.Size(100, 21);
            this.textSearchICD9.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textSearchICD9.TabIndex     = 0;
            this.textSearchICD9.Enter       += new System.EventHandler(this.textSearchICD9_Enter);
            this.textSearchICD9.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.textSearchICD9_KeyPress);
            this.textSearchICD9.TextChanged += new System.EventHandler(this.textSearchICD9_TextChanged);
            this.textSearchICD9.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.textSearchICD9_KeyDown);
            //
            // textBox5
            //
            this.textBox5.Location     = new System.Drawing.Point(120, 80);
            this.textBox5.MaxLength    = 20;
            this.textBox5.Name         = "textBox5";
            this.textBox5.Size         = new System.Drawing.Size(100, 21);
            this.textBox5.Style        = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBox5.TabIndex     = 2;
            this.textBox5.Enter       += new System.EventHandler(this.textBox5_Enter);
            this.textBox5.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.textBox5_KeyPress);
            this.textBox5.TextChanged += new System.EventHandler(this.textBox5_TextChanged);
            this.textBox5.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.textBox5_KeyDown);
            //
            // textBox6
            //
            this.textBox6.Location = new System.Drawing.Point(336, 80);
            this.textBox6.Name     = "textBox6";
            this.textBox6.ReadOnly = true;
            this.textBox6.Size     = new System.Drawing.Size(88, 21);
            this.textBox6.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBox6.TabIndex = 11;
            this.textBox6.TabStop  = false;
            this.textBox6.Text     = "诊断码";
            //
            // label6
            //
            this.label6.Location  = new System.Drawing.Point(232, 80);
            this.label6.Name      = "label6";
            this.label6.Size      = new System.Drawing.Size(96, 23);
            this.label6.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label6.TabIndex  = 10;
            this.label6.Text      = "查询码(F2切换)";
            this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // textBoxICD9Name
            //
            this.textBoxICD9Name.Location = new System.Drawing.Point(336, 32);
            this.textBoxICD9Name.Name     = "textBoxICD9Name";
            this.textBoxICD9Name.ReadOnly = true;
            this.textBoxICD9Name.Size     = new System.Drawing.Size(176, 21);
            this.textBoxICD9Name.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBoxICD9Name.TabIndex = 8;
            this.textBoxICD9Name.TabStop  = false;
            //
            // textBoxICD9
            //
            this.textBoxICD9.Location = new System.Drawing.Point(232, 32);
            this.textBoxICD9.Name     = "textBoxICD9";
            this.textBoxICD9.ReadOnly = true;
            this.textBoxICD9.Size     = new System.Drawing.Size(100, 21);
            this.textBoxICD9.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBoxICD9.TabIndex = 7;
            this.textBoxICD9.TabStop  = false;
            //
            // textBoxICD10Name
            //
            this.textBoxICD10Name.Location = new System.Drawing.Point(336, 56);
            this.textBoxICD10Name.Name     = "textBoxICD10Name";
            this.textBoxICD10Name.ReadOnly = true;
            this.textBoxICD10Name.Size     = new System.Drawing.Size(176, 21);
            this.textBoxICD10Name.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBoxICD10Name.TabIndex = 6;
            this.textBoxICD10Name.TabStop  = false;
            //
            // label5
            //
            this.label5.Location  = new System.Drawing.Point(376, 8);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(100, 23);
            this.label5.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label5.TabIndex  = 5;
            this.label5.Text      = "ICD名称";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label4
            //
            this.label4.Location  = new System.Drawing.Point(232, 8);
            this.label4.Name      = "label4";
            this.label4.Size      = new System.Drawing.Size(100, 23);
            this.label4.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label4.TabIndex  = 4;
            this.label4.Text      = "ICD编码";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // textBoxICD10
            //
            this.textBoxICD10.Location = new System.Drawing.Point(232, 56);
            this.textBoxICD10.Name     = "textBoxICD10";
            this.textBoxICD10.ReadOnly = true;
            this.textBoxICD10.Size     = new System.Drawing.Size(100, 21);
            this.textBoxICD10.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.textBoxICD10.TabIndex = 3;
            this.textBoxICD10.TabStop  = false;
            //
            // label3
            //
            this.label3.Location  = new System.Drawing.Point(16, 80);
            this.label3.Name      = "label3";
            this.label3.Size      = new System.Drawing.Size(96, 23);
            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.Location  = new System.Drawing.Point(16, 32);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(72, 23);
            this.label2.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label2.TabIndex  = 1;
            this.label2.Text      = "ICD9 查询";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label1
            //
            this.label1.Location  = new System.Drawing.Point(16, 56);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(72, 23);
            this.label1.Style     = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.label1.TabIndex  = 0;
            this.label1.Text      = "ICD10 查询";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // tabControl1
            //
            this.tabControl1.Controls.Add(this.ICD9);
            this.tabControl1.Controls.Add(this.ICD10);
            this.tabControl1.Controls.Add(this.Compare);
            this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location      = new System.Drawing.Point(0, 111);
            this.tabControl1.Name          = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size          = new System.Drawing.Size(800, 489);
            this.tabControl1.TabIndex      = 3;
            this.tabControl1.TabStop       = false;
            //
            // ICD9
            //
            this.ICD9.Controls.Add(this.panel2);
            this.ICD9.Location = new System.Drawing.Point(4, 21);
            this.ICD9.Name     = "ICD9";
            this.ICD9.Size     = new System.Drawing.Size(792, 464);
            this.ICD9.TabIndex = 1;
            this.ICD9.Text     = "ICD9";
            //
            // panel2
            //
            this.panel2.Controls.Add(this.fpSpread2);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(792, 464);
            this.panel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel2.TabIndex = 0;
            //
            // fpSpread2
            //
            this.fpSpread2.About = "2.5.2007.2005";
            this.fpSpread2.AccessibleDescription = "fpSpread2, Sheet1, Row 0, Column 0, ";
            this.fpSpread2.BackColor             = System.Drawing.SystemColors.Control;
            this.fpSpread2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread2.Location = new System.Drawing.Point(0, 0);
            this.fpSpread2.Name     = "fpSpread2";
            this.fpSpread2.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread2_Sheet1
            });
            this.fpSpread2.Size                = new System.Drawing.Size(792, 464);
            this.fpSpread2.TabIndex            = 0;
            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.fpSpread2.TextTipAppearance   = tipAppearance1;
            this.fpSpread2.CellDoubleClick    += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread2_CellDoubleClick);
            this.fpSpread2.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fpSpread2_ColumnWidthChanged);
            //
            // fpSpread2_Sheet1
            //
            this.fpSpread2_Sheet1.Reset();
            this.fpSpread2_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread2_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread2_Sheet1.OperationMode  = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpSpread2_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread2_Sheet1.RowHeader.Columns.Get(0).Width      = 37F;
            this.fpSpread2_Sheet1.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpSpread2_Sheet1.SelectionUnit   = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpSpread2_Sheet1.ReferenceStyle  = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // ICD10
            //
            this.ICD10.Controls.Add(this.panel1);
            this.ICD10.Location = new System.Drawing.Point(4, 21);
            this.ICD10.Name     = "ICD10";
            this.ICD10.Size     = new System.Drawing.Size(792, 464);
            this.ICD10.TabIndex = 0;
            this.ICD10.Text     = "ICD10";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.fpSpread1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(792, 464);
            this.panel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel1.TabIndex = 0;
            //
            // fpSpread1
            //
            this.fpSpread1.About = "2.5.2007.2005";
            this.fpSpread1.AccessibleDescription = "fpSpread1, Sheet1, Row 0, Column 0, ";
            this.fpSpread1.BackColor             = System.Drawing.SystemColors.Control;
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                = new System.Drawing.Size(792, 464);
            this.fpSpread1.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.fpSpread1.TextTipAppearance   = tipAppearance2;
            this.fpSpread1.CellDoubleClick    += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellDoubleClick);
            this.fpSpread1.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fpSpread1_ColumnWidthChanged);
            //
            // 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.OperationMode  = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.Columns.Get(0).Width      = 37F;
            this.fpSpread1_Sheet1.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpSpread1_Sheet1.SelectionUnit   = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpSpread1_Sheet1.ReferenceStyle  = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // Compare
            //
            this.Compare.Controls.Add(this.panel3);
            this.Compare.Location = new System.Drawing.Point(4, 21);
            this.Compare.Name     = "Compare";
            this.Compare.Size     = new System.Drawing.Size(792, 464);
            this.Compare.TabIndex = 2;
            this.Compare.Text     = "ICD 对照";
            //
            // panel3
            //
            this.panel3.Controls.Add(this.fpSpread3);
            this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Name     = "panel3";
            this.panel3.Size     = new System.Drawing.Size(792, 464);
            this.panel3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel3.TabIndex = 0;
            //
            // fpSpread3
            //
            this.fpSpread3.About = "2.5.2007.2005";
            this.fpSpread3.AccessibleDescription = "fpSpread3, Sheet1, Row 0, Column 0, ";
            this.fpSpread3.BackColor             = System.Drawing.SystemColors.Control;
            this.fpSpread3.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread3.Location = new System.Drawing.Point(0, 0);
            this.fpSpread3.Name     = "fpSpread3";
            this.fpSpread3.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread3_Sheet1
            });
            this.fpSpread3.Size                = new System.Drawing.Size(792, 464);
            this.fpSpread3.TabIndex            = 0;
            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.fpSpread3.TextTipAppearance   = tipAppearance3;
            this.fpSpread3.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fpSpread3_ColumnWidthChanged);
            //
            // fpSpread3_Sheet1
            //
            this.fpSpread3_Sheet1.Reset();
            this.fpSpread3_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread3_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread3_Sheet1.OperationMode  = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpSpread3_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread3_Sheet1.RowHeader.Columns.Get(0).Width      = 37F;
            this.fpSpread3_Sheet1.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpSpread3_Sheet1.SelectionUnit   = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpSpread3_Sheet1.ReferenceStyle  = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // ucICDCompare
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.groupBox1);
            this.Name  = "ucICDCompare";
            this.Size  = new System.Drawing.Size(800, 600);
            this.Load += new System.EventHandler(this.ucICDCompare_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.ICD9.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread2_Sheet1)).EndInit();
            this.ICD10.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.Compare.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread3_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }
예제 #9
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size     = new System.Drawing.Size(656, 480);
            this.fpSpread1.TabIndex = 0;
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.ActiveSkin = FarPoint.Win.Spread.DefaultSkins.Classic2;
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Text   = "姓名";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Text   = "住院号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Text   = "性别";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Text   = "年龄";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Text   = "出生年月";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Text   = "籍贯";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Text   = "出生地";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Text   = "户籍地址";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 8).Text   = "住院次数";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 9).Text   = "入院日期";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 10).Text  = "入院科别";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 11).Text  = "出院日期";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).Text  = "出院科别";
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(107)), ((System.Byte)(105)), ((System.Byte)(107)));
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.DefaultStyle.ForeColor = System.Drawing.Color.Black;
            this.fpSpread1_Sheet1.DefaultStyle.Parent    = "DataAreaDefault";
            this.fpSpread1_Sheet1.OperationMode          = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.FromArgb(((System.Byte)(107)), ((System.Byte)(105)), ((System.Byte)(107)));
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.SelectionPolicy            = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpSpread1_Sheet1.SelectionUnit              = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(107)), ((System.Byte)(105)), ((System.Byte)(107)));
            this.fpSpread1_Sheet1.SheetCornerStyle.ForeColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.SheetName = "Sheet1";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.fpSpread1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(656, 480);
            this.panel1.TabIndex = 1;
            //
            // ucShowCaseInfo
            //
            this.Controls.Add(this.panel1);
            this.Name  = "ucShowCaseInfo";
            this.Size  = new System.Drawing.Size(656, 480);
            this.Load += new System.EventHandler(this.ucShowCaseInfo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucSubtblManagement));
            FarPoint.Win.Spread.TipAppearance tipAppearance1         = new FarPoint.Win.Spread.TipAppearance();
            this.ucItem2           = new Neusoft.HISFC.Components.Common.Controls.ucInputItem();
            this.ucItem1           = new Neusoft.HISFC.Components.Common.Controls.ucInputItem();
            this.neuPanel1         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuPanel5         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuPanel4         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuListView1      = new Neusoft.FrameWork.WinForms.Controls.NeuListView();
            this.neuListView2      = new Neusoft.FrameWork.WinForms.Controls.NeuListView();
            this.neuPanel3         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuRadioButton2   = new Neusoft.FrameWork.WinForms.Controls.NeuRadioButton();
            this.neuRadioButton1   = new Neusoft.FrameWork.WinForms.Controls.NeuRadioButton();
            this.neuPanel2         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuListBox1       = new Neusoft.FrameWork.WinForms.Controls.NeuListBox();
            this.neuSplitter1      = new Neusoft.FrameWork.WinForms.Controls.NeuSplitter();
            this.neuPanel6         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuPanel7         = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuSpread1        = new Neusoft.FrameWork.WinForms.Controls.NeuSpread();
            this.neuSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.neuSplitter2      = new Neusoft.FrameWork.WinForms.Controls.NeuSplitter();
            this.neuPanel1.SuspendLayout();
            this.neuPanel5.SuspendLayout();
            this.neuPanel4.SuspendLayout();
            this.neuPanel3.SuspendLayout();
            this.neuPanel2.SuspendLayout();
            this.neuPanel6.SuspendLayout();
            this.neuPanel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();
            //
            // ucItem2
            //
            this.ucItem2.AlCatagory              = ((System.Collections.ArrayList)(resources.GetObject("ucItem2.AlCatagory")));
            this.ucItem2.BackColor               = System.Drawing.Color.Honeydew;
            this.ucItem2.Dock                    = System.Windows.Forms.DockStyle.Top;
            this.ucItem2.FeeItem                 = ((Neusoft.FrameWork.Models.NeuObject)(resources.GetObject("ucItem2.FeeItem")));
            this.ucItem2.InputType               = 0;
            this.ucItem2.IsIncludeMat            = false;
            this.ucItem2.IsListShowAlways        = false;
            this.ucItem2.IsShowCategory          = false;
            this.ucItem2.IsShowInput             = true;
            this.ucItem2.IsShowSelfMark          = false;
            this.ucItem2.Location                = new System.Drawing.Point(0, 0);
            this.ucItem2.Name                    = "ucItem2";
            this.ucItem2.Patient                 = null;
            this.ucItem2.ShowCategory            = Neusoft.HISFC.Components.Common.Controls.EnumCategoryType.SysClass;
            this.ucItem2.ShowItemType            = Neusoft.HISFC.Components.Common.Controls.EnumShowItemType.Undrug;
            this.ucItem2.Size                    = new System.Drawing.Size(160, 41);
            this.ucItem2.TabIndex                = 7;
            this.ucItem2.UndrugApplicabilityarea = Neusoft.HISFC.Components.Common.Controls.EnumUndrugApplicabilityarea.All;
            //
            // ucItem1
            //
            this.ucItem1.AlCatagory              = ((System.Collections.ArrayList)(resources.GetObject("ucItem1.AlCatagory")));
            this.ucItem1.Dock                    = System.Windows.Forms.DockStyle.Top;
            this.ucItem1.FeeItem                 = ((Neusoft.FrameWork.Models.NeuObject)(resources.GetObject("ucItem1.FeeItem")));
            this.ucItem1.InputType               = 0;
            this.ucItem1.IsIncludeMat            = false;
            this.ucItem1.IsListShowAlways        = true;
            this.ucItem1.IsShowCategory          = true;
            this.ucItem1.IsShowInput             = true;
            this.ucItem1.IsShowSelfMark          = false;
            this.ucItem1.Location                = new System.Drawing.Point(0, 0);
            this.ucItem1.Name                    = "ucItem1";
            this.ucItem1.Patient                 = null;
            this.ucItem1.ShowCategory            = Neusoft.HISFC.Components.Common.Controls.EnumCategoryType.SysClass;
            this.ucItem1.ShowItemType            = Neusoft.HISFC.Components.Common.Controls.EnumShowItemType.Undrug;
            this.ucItem1.Size                    = new System.Drawing.Size(506, 208);
            this.ucItem1.TabIndex                = 0;
            this.ucItem1.UndrugApplicabilityarea = Neusoft.HISFC.Components.Common.Controls.EnumUndrugApplicabilityarea.All;
            this.ucItem1.SelectedItem           += new Neusoft.FrameWork.WinForms.Forms.SelectedItemHandler(this.ucItem1_SelectedItem);
            //
            // neuPanel1
            //
            this.neuPanel1.Controls.Add(this.neuPanel5);
            this.neuPanel1.Controls.Add(this.neuPanel3);
            this.neuPanel1.Controls.Add(this.neuPanel2);
            this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Left;
            this.neuPanel1.Location = new System.Drawing.Point(0, 0);
            this.neuPanel1.Name     = "neuPanel1";
            this.neuPanel1.Size     = new System.Drawing.Size(160, 471);
            this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel1.TabIndex = 8;
            //
            // neuPanel5
            //
            this.neuPanel5.Controls.Add(this.neuPanel4);
            this.neuPanel5.Controls.Add(this.neuListView2);
            this.neuPanel5.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel5.Location = new System.Drawing.Point(0, 196);
            this.neuPanel5.Name     = "neuPanel5";
            this.neuPanel5.Size     = new System.Drawing.Size(160, 275);
            this.neuPanel5.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel5.TabIndex = 11;
            //
            // neuPanel4
            //
            this.neuPanel4.BackColor = System.Drawing.Color.Silver;
            this.neuPanel4.Controls.Add(this.neuListView1);
            this.neuPanel4.Controls.Add(this.ucItem2);
            this.neuPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel4.Location = new System.Drawing.Point(0, 0);
            this.neuPanel4.Name     = "neuPanel4";
            this.neuPanel4.Size     = new System.Drawing.Size(160, 275);
            this.neuPanel4.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel4.TabIndex = 9;
            //
            // neuListView1
            //
            this.neuListView1.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.neuListView1.HideSelection = false;
            this.neuListView1.Location      = new System.Drawing.Point(0, 41);
            this.neuListView1.Name          = "neuListView1";
            this.neuListView1.Size          = new System.Drawing.Size(160, 234);
            this.neuListView1.Style         = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuListView1.TabIndex      = 9;
            this.neuListView1.UseCompatibleStateImageBehavior = false;
            this.neuListView1.View = System.Windows.Forms.View.SmallIcon;
            this.neuListView1.SelectedIndexChanged += new System.EventHandler(this.neuListView1_SelectedIndexChanged);
            //
            // neuListView2
            //
            this.neuListView2.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.neuListView2.HideSelection = false;
            this.neuListView2.Location      = new System.Drawing.Point(0, 0);
            this.neuListView2.Name          = "neuListView2";
            this.neuListView2.Size          = new System.Drawing.Size(160, 275);
            this.neuListView2.Style         = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuListView2.TabIndex      = 10;
            this.neuListView2.UseCompatibleStateImageBehavior = false;
            this.neuListView2.View = System.Windows.Forms.View.List;
            this.neuListView2.SelectedIndexChanged += new System.EventHandler(this.neuListView2_SelectedIndexChanged);
            //
            // neuPanel3
            //
            this.neuPanel3.Controls.Add(this.neuRadioButton2);
            this.neuPanel3.Controls.Add(this.neuRadioButton1);
            this.neuPanel3.Dock     = System.Windows.Forms.DockStyle.Top;
            this.neuPanel3.Location = new System.Drawing.Point(0, 161);
            this.neuPanel3.Name     = "neuPanel3";
            this.neuPanel3.Size     = new System.Drawing.Size(160, 35);
            this.neuPanel3.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel3.TabIndex = 1;
            //
            // neuRadioButton2
            //
            this.neuRadioButton2.AutoSize = true;
            this.neuRadioButton2.Location = new System.Drawing.Point(86, 6);
            this.neuRadioButton2.Name     = "neuRadioButton2";
            this.neuRadioButton2.Size     = new System.Drawing.Size(59, 16);
            this.neuRadioButton2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuRadioButton2.TabIndex = 10;
            this.neuRadioButton2.TabStop  = true;
            this.neuRadioButton2.Text     = "非药品";
            this.neuRadioButton2.UseVisualStyleBackColor = true;
            this.neuRadioButton2.CheckedChanged         += new System.EventHandler(this.neuRadioButton2_CheckedChanged);
            //
            // neuRadioButton1
            //
            this.neuRadioButton1.AutoSize = true;
            this.neuRadioButton1.Location = new System.Drawing.Point(11, 6);
            this.neuRadioButton1.Name     = "neuRadioButton1";
            this.neuRadioButton1.Size     = new System.Drawing.Size(71, 16);
            this.neuRadioButton1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuRadioButton1.TabIndex = 9;
            this.neuRadioButton1.TabStop  = true;
            this.neuRadioButton1.Text     = "药品用法";
            this.neuRadioButton1.UseVisualStyleBackColor = true;
            this.neuRadioButton1.CheckedChanged         += new System.EventHandler(this.neuRadioButton1_CheckedChanged);
            //
            // neuPanel2
            //
            this.neuPanel2.Controls.Add(this.neuListBox1);
            this.neuPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
            this.neuPanel2.Location = new System.Drawing.Point(0, 0);
            this.neuPanel2.Name     = "neuPanel2";
            this.neuPanel2.Size     = new System.Drawing.Size(160, 161);
            this.neuPanel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel2.TabIndex = 0;
            //
            // neuListBox1
            //
            this.neuListBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.neuListBox1.FormattingEnabled = true;
            this.neuListBox1.ItemHeight        = 12;
            this.neuListBox1.Location          = new System.Drawing.Point(0, 0);
            this.neuListBox1.Name                  = "neuListBox1";
            this.neuListBox1.Size                  = new System.Drawing.Size(160, 160);
            this.neuListBox1.Style                 = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuListBox1.TabIndex              = 0;
            this.neuListBox1.SelectedIndexChanged += new System.EventHandler(this.neuListBox1_SelectedIndexChanged);
            //
            // neuSplitter1
            //
            this.neuSplitter1.Location = new System.Drawing.Point(160, 0);
            this.neuSplitter1.Name     = "neuSplitter1";
            this.neuSplitter1.Size     = new System.Drawing.Size(6, 471);
            this.neuSplitter1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuSplitter1.TabIndex = 9;
            this.neuSplitter1.TabStop  = false;
            //
            // neuPanel6
            //
            this.neuPanel6.Controls.Add(this.neuPanel7);
            this.neuPanel6.Controls.Add(this.neuSplitter2);
            this.neuPanel6.Controls.Add(this.ucItem1);
            this.neuPanel6.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel6.Location = new System.Drawing.Point(166, 0);
            this.neuPanel6.Name     = "neuPanel6";
            this.neuPanel6.Size     = new System.Drawing.Size(506, 471);
            this.neuPanel6.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel6.TabIndex = 10;
            //
            // neuPanel7
            //
            this.neuPanel7.Controls.Add(this.neuSpread1);
            this.neuPanel7.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel7.Location = new System.Drawing.Point(0, 214);
            this.neuPanel7.Name     = "neuPanel7";
            this.neuPanel7.Size     = new System.Drawing.Size(506, 257);
            this.neuPanel7.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel7.TabIndex = 3;
            //
            // neuSpread1
            //
            this.neuSpread1.About = "3.0.2004.2005";
            this.neuSpread1.AccessibleDescription = "neuSpread1, Sheet1, Row 0, Column 0, ";
            this.neuSpread1.BackColor             = System.Drawing.Color.White;
            this.neuSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuSpread1.FileName = "";
            this.neuSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.neuSpread1.IsAutoSaveGridStatus      = false;
            this.neuSpread1.IsCanCustomConfigColumn   = false;
            this.neuSpread1.Location = new System.Drawing.Point(0, 0);
            this.neuSpread1.Name     = "neuSpread1";
            this.neuSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.neuSpread1_Sheet1
            });
            this.neuSpread1.Size                    = new System.Drawing.Size(506, 257);
            this.neuSpread1.Style                   = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuSpread1.TabIndex                = 2;
            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.neuSpread1.TextTipAppearance       = tipAppearance1;
            this.neuSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            //
            // neuSpread1_Sheet1
            //
            this.neuSpread1_Sheet1.Reset();
            this.neuSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.neuSpread1_Sheet1.ActiveSkin     = FarPoint.Win.Spread.DefaultSkins.Classic2;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Locked    = false;
            this.neuSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.neuSpread1_Sheet1.Columns.Get(0).Width   = 200F;
            this.neuSpread1_Sheet1.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.DefaultStyle.ForeColor = System.Drawing.Color.Black;
            this.neuSpread1_Sheet1.DefaultStyle.Locked    = false;
            this.neuSpread1_Sheet1.DefaultStyle.Parent    = "DataAreaDefault";
            this.neuSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.neuSpread1_Sheet1.RowHeader.Columns.Get(0).Width      = 40F;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor    = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Locked       = false;
            this.neuSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.neuSpread1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.neuSpread1_Sheet1.SheetCornerStyle.ForeColor          = System.Drawing.Color.White;
            this.neuSpread1_Sheet1.SheetCornerStyle.Locked             = false;
            this.neuSpread1_Sheet1.SheetCornerStyle.Parent             = "HeaderDefault";
            this.neuSpread1_Sheet1.VisualStyles   = FarPoint.Win.VisualStyles.Off;
            this.neuSpread1_Sheet1.CellChanged   += new FarPoint.Win.Spread.SheetViewEventHandler(this.neuSpread1_Sheet1_CellChanged);
            this.neuSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // neuSplitter2
            //
            this.neuSplitter2.Dock     = System.Windows.Forms.DockStyle.Top;
            this.neuSplitter2.Location = new System.Drawing.Point(0, 208);
            this.neuSplitter2.Name     = "neuSplitter2";
            this.neuSplitter2.Size     = new System.Drawing.Size(506, 6);
            this.neuSplitter2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuSplitter2.TabIndex = 1;
            this.neuSplitter2.TabStop  = false;
            //
            // ucSubtblManagement
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.neuPanel6);
            this.Controls.Add(this.neuSplitter1);
            this.Controls.Add(this.neuPanel1);
            this.Name  = "ucSubtblManagement";
            this.Size  = new System.Drawing.Size(672, 471);
            this.Load += new System.EventHandler(this.ucSubtblManagement_Load);
            this.neuPanel1.ResumeLayout(false);
            this.neuPanel5.ResumeLayout(false);
            this.neuPanel4.ResumeLayout(false);
            this.neuPanel3.ResumeLayout(false);
            this.neuPanel3.PerformLayout();
            this.neuPanel2.ResumeLayout(false);
            this.neuPanel6.ResumeLayout(false);
            this.neuPanel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.neuSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSearchName));
            this.toolBar1        = new System.Windows.Forms.ToolBar();
            this.tbSearch        = new System.Windows.Forms.ToolBarButton();
            this.tbExport        = new System.Windows.Forms.ToolBarButton();
            this.tbPrint         = new System.Windows.Forms.ToolBarButton();
            this.tbExist         = new System.Windows.Forms.ToolBarButton();
            this.imageList32     = new System.Windows.Forms.ImageList(this.components);
            this.groupBox1       = new System.Windows.Forms.GroupBox();
            this.panel1          = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.ucNameSreach1   = new ucNameSreach();
            this.ucShowCaseInfo1 = new ucShowCaseInfo();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // toolBar1
            //
            this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                this.tbSearch,
                this.tbExport,
                this.tbPrint,
                this.tbExist
            });
            this.toolBar1.DropDownArrows = true;
            this.toolBar1.ImageList      = this.imageList32;
            this.toolBar1.Location       = new System.Drawing.Point(0, 0);
            this.toolBar1.Name           = "toolBar1";
            this.toolBar1.ShowToolTips   = true;
            this.toolBar1.Size           = new System.Drawing.Size(1016, 57);
            this.toolBar1.TabIndex       = 0;
            this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
            //
            // tbSearch
            //
            this.tbSearch.ImageIndex = 11;
            this.tbSearch.Text       = "查询(F4)";
            //
            // tbExport
            //
            this.tbExport.ImageIndex = 36;
            this.tbExport.Text       = "导出(F5)";
            //
            // tbPrint
            //
            this.tbPrint.ImageIndex = 12;
            this.tbPrint.Text       = "打印(F8)";
            //
            // tbExist
            //
            this.tbExist.ImageIndex = 14;
            this.tbExist.Text       = "退出(&X)";
            //
            // imageList32
            //
            this.imageList32.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
            this.imageList32.ImageSize        = new System.Drawing.Size(32, 32);
            this.imageList32.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList32.ImageStream")));
            this.imageList32.TransparentColor = System.Drawing.Color.Transparent;
            //
            // groupBox1
            //
            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(1016, 8);
            this.groupBox1.TabIndex = 3;
            this.groupBox1.TabStop  = false;
            //
            // panel1
            //
            this.panel1.Controls.Add(this.ucShowCaseInfo1);
            this.panel1.Controls.Add(this.ucNameSreach1);
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 57);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(1016, 684);
            this.panel1.TabIndex = 4;
            //
            // ucNameSreach1
            //
            this.ucNameSreach1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.ucNameSreach1.Location = new System.Drawing.Point(0, 8);
            this.ucNameSreach1.Name     = "ucNameSreach1";
            this.ucNameSreach1.Size     = new System.Drawing.Size(1016, 40);
            this.ucNameSreach1.TabIndex = 4;
            //
            // ucShowCaseInfo1
            //
            this.ucShowCaseInfo1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.ucShowCaseInfo1.Location = new System.Drawing.Point(0, 48);
            this.ucShowCaseInfo1.Name     = "ucShowCaseInfo1";
            this.ucShowCaseInfo1.Size     = new System.Drawing.Size(1016, 636);
            this.ucShowCaseInfo1.TabIndex = 5;
            //
            // frmSearchName
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize        = new System.Drawing.Size(1016, 741);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.toolBar1);
            this.Name          = "frmSearchName";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "姓名查询";
            this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
예제 #12
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType4 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType5 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType6 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType7 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType8 = new FarPoint.Win.Spread.CellType.TextCellType();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.lbTitle          = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.lbDate           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panelList        = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.groupBox1        = new Neusoft.FrameWork.WinForms.Controls.NeuGroupBox();
            this.lbType           = new Neusoft.FrameWork.WinForms.Controls.PopUpListBox();
            this.label1           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.panelList.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.AllowDragDrop = true;
            this.fpSpread1.AllowDrop     = true;
            this.fpSpread1.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.fpSpread1.BackColor         = System.Drawing.SystemColors.Window;
            this.fpSpread1.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
            this.fpSpread1.ButtonDrawMode    = FarPoint.Win.Spread.ButtonDrawModes.CurrentCell;
            this.fpSpread1.EditModePermanent = true;
            this.fpSpread1.EditModeReplace   = true;
            this.fpSpread1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.Location = new System.Drawing.Point(8, 52);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size                    = new System.Drawing.Size(642, 372);
            this.fpSpread1.TabIndex                = 0;
            this.fpSpread1.TextTipPolicy           = FarPoint.Win.Spread.TextTipPolicy.Fixed;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.DragOver               += new System.Windows.Forms.DragEventHandler(this.fpSpread1_DragOver);
            this.fpSpread1.EditModeOn             += new System.EventHandler(this.fpSpread1_EditModeOn);
            this.fpSpread1.MouseMove              += new System.Windows.Forms.MouseEventHandler(this.fpSpread1_MouseMove);
            this.fpSpread1.MouseDown              += new System.Windows.Forms.MouseEventHandler(this.fpSpread1_MouseDown);
            this.fpSpread1.MouseUp                += new System.Windows.Forms.MouseEventHandler(this.fpSpread1_MouseUp);
            this.fpSpread1.EditModeOff            += new System.EventHandler(this.fpSpread1_EditModeOff);
            this.fpSpread1.DragDrop               += new System.Windows.Forms.DragEventHandler(this.fpSpread1_DragDrop);
            this.fpSpread1.CellClick              += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellClick);
            this.fpSpread1.EditChange             += new FarPoint.Win.Spread.EditorNotifyEventHandler(this.fpSpread1_EditChange);
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.ColumnCount                         = 10;
            this.fpSpread1_Sheet1.RowCount                            = 0;
            this.fpSpread1_Sheet1.RowHeader.ColumnCount               = 0;
            this.fpSpread1_Sheet1.ActiveSkin                          = new FarPoint.Win.Spread.SheetSkin("CustomSkin2", System.Drawing.SystemColors.Window, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.SystemColors.WindowText, 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, true, false, false, true, false);
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Text   = "序号";
            this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Text   = "姓名";
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.Columns.Get(0).Label                = "序号";
            this.fpSpread1_Sheet1.Columns.Get(0).Width                = 42F;
            this.fpSpread1_Sheet1.Columns.Get(1).CellType             = textCellType1;
            this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.General;
            this.fpSpread1_Sheet1.Columns.Get(1).Label                = "姓名";
            this.fpSpread1_Sheet1.Columns.Get(1).Width                = 98F;
            this.fpSpread1_Sheet1.Columns.Get(2).CellType             = textCellType2;
            this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(2).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(3).CellType             = textCellType3;
            this.fpSpread1_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(3).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(4).CellType             = textCellType4;
            this.fpSpread1_Sheet1.Columns.Get(4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(4).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(5).CellType             = textCellType5;
            this.fpSpread1_Sheet1.Columns.Get(5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(5).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(6).CellType             = textCellType6;
            this.fpSpread1_Sheet1.Columns.Get(6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(6).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(7).CellType             = textCellType7;
            this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(7).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(8).CellType             = textCellType8;
            this.fpSpread1_Sheet1.Columns.Get(8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Columns.Get(8).Width                = 85F;
            this.fpSpread1_Sheet1.Columns.Get(9).Visible              = false;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.RowHeader.Visible                   = false;
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent             = "HeaderDefault";
            this.fpSpread1_Sheet1.SheetName                           = "Sheet1";
            //
            // lbTitle
            //
            this.lbTitle.Font      = new System.Drawing.Font("黑体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.lbTitle.Location  = new System.Drawing.Point(230, 13);
            this.lbTitle.Name      = "lbTitle";
            this.lbTitle.Size      = new System.Drawing.Size(238, 26);
            this.lbTitle.TabIndex  = 0;
            this.lbTitle.Text      = "科室排班表";
            this.lbTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // lbDate
            //
            this.lbDate.Location = new System.Drawing.Point(472, 28);
            this.lbDate.Name     = "lbDate";
            this.lbDate.Size     = new System.Drawing.Size(176, 19);
            this.lbDate.TabIndex = 1;
            this.lbDate.Text     = "排班时间:";
            //
            // panelList
            //
            this.panelList.BackColor = System.Drawing.SystemColors.Control;
            this.panelList.Controls.Add(this.groupBox1);
            this.panelList.Location = new System.Drawing.Point(334, 169);
            this.panelList.Name     = "panelList";
            this.panelList.Size     = new System.Drawing.Size(184, 230);
            this.panelList.TabIndex = 2;
            //
            // groupBox1
            //
            this.groupBox1.BackColor = System.Drawing.Color.Silver;
            this.groupBox1.Controls.Add(this.lbType);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Font     = new System.Drawing.Font("宋体", 1F);
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(184, 230);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            //
            // lbType
            //
            this.lbType.BackColor           = System.Drawing.Color.Silver;
            this.lbType.BorderStyle         = System.Windows.Forms.BorderStyle.None;
            this.lbType.Cursor              = System.Windows.Forms.Cursors.Hand;
            this.lbType.Font                = new System.Drawing.Font("宋体", 11F);
            this.lbType.HorizontalScrollbar = true;
            this.lbType.InputCode           = 0;
            this.lbType.IsShowID            = true;
            this.lbType.ItemHeight          = 15;
            this.lbType.Location            = new System.Drawing.Point(5, 22);
            this.lbType.Name                = "lbType";
            this.lbType.SelectNone          = false;
            this.lbType.Size                = new System.Drawing.Size(174, 195);
            this.lbType.TabIndex            = 1;
            //
            // label1
            //
            this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.label1.Location    = new System.Drawing.Point(4, 21);
            this.label1.Name        = "label1";
            this.label1.Size        = new System.Drawing.Size(176, 205);
            this.label1.TabIndex    = 0;
            //
            // ucTabular
            //
            this.BackColor = System.Drawing.SystemColors.Window;
            this.Controls.Add(this.panelList);
            this.Controls.Add(this.lbDate);
            this.Controls.Add(this.lbTitle);
            this.Controls.Add(this.fpSpread1);
            this.Name = "ucTabular";
            this.Size = new System.Drawing.Size(658, 431);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.panelList.ResumeLayout(false);
            this.groupBox1.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);
        }
예제 #15
0
 protected virtual void PrintInfo(Neusoft.FrameWork.WinForms.Controls.NeuPanel panelPrint)
 {
     Neusoft.FrameWork.WinForms.Classes.Print print = new Neusoft.FrameWork.WinForms.Classes.Print();
     print.PrintPage(0, 0, panelPrint);
 }
예제 #16
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ucCardManage));

            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.textBox1         = new Neusoft.FrameWork.WinForms.Controls.NeuTextBox();
            this.label1           = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel2           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.SuspendLayout();

            //
            // panel1
            //
            this.panel1.Controls.Add(this.textBox1);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 57);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(1016, 39);
            this.panel1.TabIndex = 1;
            this.panel1.Visible  = false;
            //
            // textBox1
            //
            this.textBox1.Location = new System.Drawing.Point(80, 8);
            this.textBox1.Name     = "textBox1";
            this.textBox1.TabIndex = 1;
            this.textBox1.Text     = "";
            //
            // label1
            //
            this.label1.AutoSize  = true;
            this.label1.Location  = new System.Drawing.Point(32, 8);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(29, 17);
            this.label1.TabIndex  = 0;
            this.label1.Text      = "查询";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // panel2
            //
            this.panel2.Controls.Add(this.fpSpread1);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 96);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(1016, 645);
            this.panel2.TabIndex = 2;
            //
            // fpSpread1
            //
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size             = new System.Drawing.Size(1016, 645);
            this.fpSpread1.TabIndex         = 0;
            this.fpSpread1.CellDoubleClick += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellDoubleClick);
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            //this.fpSpread1_Sheet1.AutoSortColumns = ((FarPoint.Win.Spread.SheetView.SaveAutoSortColumns)(resources.GetObject("fpSpread1_Sheet1.AutoSortColumns")));
            this.fpSpread1_Sheet1.OperationMode = FarPoint.Win.Spread.OperationMode.SingleSelect;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.Single;
            this.fpSpread1_Sheet1.SelectionUnit   = FarPoint.Win.Spread.Model.SelectionUnit.Row;
            this.fpSpread1_Sheet1.SheetName       = "Sheet1";
            //
            // frmCardManage
            //
            this.ClientSize = new System.Drawing.Size(1016, 741);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Name  = "frmCardManage";
            this.Text  = "病案卡管理";
            this.Load += new System.EventHandler(this.frmCardManage_Load);
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.ResumeLayout(false);
        }