Exemple #1
0
 public override Control CreateEditorControl()
 {
     SourceLibrary.Windows.Forms.TextBoxTyped l_Control = new SourceLibrary.Windows.Forms.TextBoxTyped();
     l_Control.BorderStyle = BorderStyle.None;
     l_Control.AutoSize    = false;
     return(l_Control);
 }
Exemple #2
0
        /// <summary>
        /// Start editing the cell passed. Do not call this method for start editing a cell, you must use Cell.StartEdit.
        /// </summary>
        /// <param name="p_Cell">Cell to start edit</param>
        /// <param name="p_Position">Editing position(Row/Col)</param>
        /// <param name="p_StartEditValue">Can be null(in this case use the p_cell.Value</param>
        public override void InternalStartEdit(Cells.ICellVirtual p_Cell, Position p_Position, object p_StartEditValue)
        {
            base.InternalStartEdit(p_Cell, p_Position, p_StartEditValue);

            if (EnableEdit == false)
            {
                return;
            }

            SourceLibrary.Windows.Forms.TextBoxTyped l_TxtBox = GetEditorTextBox(p_Cell.Grid);

            l_TxtBox.Validator              = this;
            l_TxtBox.EnableEscapeKeyUndo    = false;
            l_TxtBox.EnableEnterKeyValidate = false;
            l_TxtBox.EnableLastValidValue   = false;
            l_TxtBox.EnableAutoValidation   = false;

            l_TxtBox.Multiline = m_bMultiLine;
            if (m_bMultiLine == false)
            {
                l_TxtBox.MaxLength = m_MaxLength;
            }

            l_TxtBox.WordWrap          = p_Cell.VisualModel.WordWrap;
            l_TxtBox.TextAlign         = Utility.ContentToHorizontalAlignment(p_Cell.VisualModel.TextAlignment);
            l_TxtBox.Font              = p_Cell.VisualModel.Font;
            l_TxtBox.ValidCharacters   = m_ValidCharacters;
            l_TxtBox.InvalidCharacters = m_InvalidCharacters;

            //if (p_StartEditValue!=null && IsStringConversionSupported())
            if (p_StartEditValue is string && IsStringConversionSupported())
            {
                l_TxtBox.Text           = SourceLibrary.Windows.Forms.TextBoxTyped.ValidateCharactersString((string)p_StartEditValue, m_ValidCharacters, m_InvalidCharacters);
                l_TxtBox.SelectionStart = l_TxtBox.Text.Length;
            }
            else
            {
                l_TxtBox.Value = p_Cell.GetValue(p_Position);
                l_TxtBox.SelectAll();
            }
        }
Exemple #3
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.cryReportViewer = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.m_btnQulReg     = new PinkieControls.ButtonXP();
     this.m_daFinDate     = new System.Windows.Forms.DateTimePicker();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.label2          = new System.Windows.Forms.Label();
     this.m_toDate        = new System.Windows.Forms.DateTimePicker();
     this.txtCardID       = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.m_txtName       = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_chbDate       = new System.Windows.Forms.CheckBox();
     this.m_chbPatienName = new System.Windows.Forms.CheckBox();
     this.m_btnExit       = new PinkieControls.ButtonXP();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.listView1       = new System.Windows.Forms.ListView();
     this.columnHeader1   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5   = new System.Windows.Forms.ColumnHeader();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // cryReportViewer
     //
     this.cryReportViewer.ActiveViewIndex = -1;
     this.cryReportViewer.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.cryReportViewer.DisplayGroupTree   = false;
     this.cryReportViewer.DockPadding.Bottom = 5;
     this.cryReportViewer.Location           = new System.Drawing.Point(8, 18);
     this.cryReportViewer.Name         = "cryReportViewer";
     this.cryReportViewer.ReportSource = null;
     this.cryReportViewer.Size         = new System.Drawing.Size(984, 430);
     this.cryReportViewer.TabIndex     = 59;
     //
     // m_btnQulReg
     //
     this.m_btnQulReg.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnQulReg.DefaultScheme = true;
     this.m_btnQulReg.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnQulReg.Hint          = "";
     this.m_btnQulReg.Location      = new System.Drawing.Point(816, 24);
     this.m_btnQulReg.Name          = "m_btnQulReg";
     this.m_btnQulReg.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnQulReg.Size          = new System.Drawing.Size(88, 24);
     this.m_btnQulReg.TabIndex      = 5;
     this.m_btnQulReg.Text          = "确定(F5)";
     this.m_btnQulReg.Click        += new System.EventHandler(this.m_btnQulReg_Click);
     //
     // m_daFinDate
     //
     this.m_daFinDate.Location = new System.Drawing.Point(512, 25);
     this.m_daFinDate.Name     = "m_daFinDate";
     this.m_daFinDate.Size     = new System.Drawing.Size(128, 23);
     this.m_daFinDate.TabIndex = 3;
     this.m_daFinDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_daFinDate_KeyDown);
     //
     // 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.label2);
     this.groupBox1.Controls.Add(this.m_toDate);
     this.groupBox1.Controls.Add(this.txtCardID);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.m_txtName);
     this.groupBox1.Controls.Add(this.m_chbDate);
     this.groupBox1.Controls.Add(this.m_chbPatienName);
     this.groupBox1.Controls.Add(this.m_btnQulReg);
     this.groupBox1.Controls.Add(this.m_daFinDate);
     this.groupBox1.Controls.Add(this.m_btnExit);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(1000, 56);
     this.groupBox1.TabIndex = 61;
     this.groupBox1.TabStop  = false;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(648, 24);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(20, 19);
     this.label2.TabIndex  = 69;
     this.label2.Text      = "至";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_toDate
     //
     this.m_toDate.Location = new System.Drawing.Point(680, 24);
     this.m_toDate.Name     = "m_toDate";
     this.m_toDate.Size     = new System.Drawing.Size(128, 23);
     this.m_toDate.TabIndex = 4;
     //
     // txtCardID
     //
     this.txtCardID.Location  = new System.Drawing.Point(64, 24);
     this.txtCardID.MaxLength = 10;
     this.txtCardID.Name      = "txtCardID";
     this.txtCardID.Size      = new System.Drawing.Size(104, 23);
     this.txtCardID.TabIndex  = 1;
     this.txtCardID.Text      = "";
     this.txtCardID.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtCardID_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(48, 19);
     this.label1.TabIndex = 67;
     this.label1.Text     = "卡 号:";
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(288, 25);
     this.m_txtName.MaxLength = 20;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(104, 23);
     this.m_txtName.TabIndex  = 2;
     this.m_txtName.Text      = "";
     this.m_txtName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtName_KeyDown);
     //
     // m_chbDate
     //
     this.m_chbDate.Checked         = true;
     this.m_chbDate.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.m_chbDate.Location        = new System.Drawing.Point(408, 24);
     this.m_chbDate.Name            = "m_chbDate";
     this.m_chbDate.Size            = new System.Drawing.Size(96, 24);
     this.m_chbDate.TabIndex        = 66;
     this.m_chbDate.Text            = "查询日期:";
     this.m_chbDate.TextAlign       = System.Drawing.ContentAlignment.MiddleRight;
     this.m_chbDate.CheckedChanged += new System.EventHandler(this.m_chbDate_CheckedChanged);
     //
     // m_chbPatienName
     //
     this.m_chbPatienName.Checked         = true;
     this.m_chbPatienName.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.m_chbPatienName.Location        = new System.Drawing.Point(192, 24);
     this.m_chbPatienName.Name            = "m_chbPatienName";
     this.m_chbPatienName.Size            = new System.Drawing.Size(96, 24);
     this.m_chbPatienName.TabIndex        = 65;
     this.m_chbPatienName.Text            = " 病人姓名:";
     this.m_chbPatienName.TextAlign       = System.Drawing.ContentAlignment.MiddleRight;
     this.m_chbPatienName.CheckedChanged += new System.EventHandler(this.m_chbPatienName_CheckedChanged);
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(904, 24);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(88, 24);
     this.m_btnExit.TabIndex      = 6;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // 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.cryReportViewer);
     this.groupBox2.Location = new System.Drawing.Point(8, 56);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(1000, 456);
     this.groupBox2.TabIndex = 62;
     this.groupBox2.TabStop  = false;
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5
     });
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines     = true;
     this.listView1.HideSelection = false;
     this.listView1.Location      = new System.Drawing.Point(72, 48);
     this.listView1.MultiSelect   = false;
     this.listView1.Name          = "listView1";
     this.listView1.Size          = new System.Drawing.Size(296, 88);
     this.listView1.TabIndex      = 56;
     this.listView1.View          = System.Windows.Forms.View.Details;
     this.listView1.Visible       = false;
     this.listView1.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.listView1_KeyDown);
     this.listView1.DoubleClick  += new System.EventHandler(this.listView1_DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "卡号";
     this.columnHeader1.Width = 101;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "姓名";
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "性别";
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "年龄";
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "id";
     this.columnHeader5.Width = 0;
     //
     // frmPublicPayReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(1016, 517);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font       = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.KeyPreview = true;
     this.Name       = "frmPublicPayReport";
     this.Text       = "公费费用报表";
     this.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.frmPublicPayReport_KeyDown);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #4
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.label11           = new System.Windows.Forms.Label();
     this.m_txtSaleTolMoney = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtBuyTolMoney  = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_dtbCreateDate   = new System.Windows.Forms.DateTimePicker();
     this.m_txtOrdID        = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtAduit        = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtCreator      = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtOrdType      = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtMedStore     = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label8            = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.label7            = new System.Windows.Forms.Label();
     this.m_txtCurPeriod    = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.tabAcct           = new System.Windows.Forms.TabControl();
     this.tabPageUnAcct     = new System.Windows.Forms.TabPage();
     this.m_lsvUnAcct       = new System.Windows.Forms.ListView();
     this.clhUnRow          = new System.Windows.Forms.ColumnHeader();
     this.clhUnFlag         = new System.Windows.Forms.ColumnHeader();
     this.clhUnID           = new System.Windows.Forms.ColumnHeader();
     this.clhUnType         = new System.Windows.Forms.ColumnHeader();
     this.clhUnCreateDate   = new System.Windows.Forms.ColumnHeader();
     this.clhUnCreator      = new System.Windows.Forms.ColumnHeader();
     this.clhUnAduit        = new System.Windows.Forms.ColumnHeader();
     this.clhUnSign         = new System.Windows.Forms.ColumnHeader();
     this.tabPageEnAcct     = new System.Windows.Forms.TabPage();
     this.m_lsvEnAcct       = new System.Windows.Forms.ListView();
     this.clhEnRow          = new System.Windows.Forms.ColumnHeader();
     this.clhEnFlag         = new System.Windows.Forms.ColumnHeader();
     this.clhEnID           = new System.Windows.Forms.ColumnHeader();
     this.clhEnType         = new System.Windows.Forms.ColumnHeader();
     this.clhEnCreateDate   = new System.Windows.Forms.ColumnHeader();
     this.clhEnCreator      = new System.Windows.Forms.ColumnHeader();
     this.clhEnAduit        = new System.Windows.Forms.ColumnHeader();
     this.clhEnSign         = new System.Windows.Forms.ColumnHeader();
     this.label9            = new System.Windows.Forms.Label();
     this.m_cboSelPeriod    = new System.Windows.Forms.ComboBox();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this.m_cmdClose        = new PinkieControls.ButtonXP();
     this.m_cmdPrint        = new PinkieControls.ButtonXP();
     this.m_cmdAcct         = new PinkieControls.ButtonXP();
     this.m_lsvDetail       = new System.Windows.Forms.ListView();
     this.clhRowNo          = new System.Windows.Forms.ColumnHeader();
     this.clhMedID          = new System.Windows.Forms.ColumnHeader();
     this.clhMedName        = new System.Windows.Forms.ColumnHeader();
     this.clhMedSpec        = new System.Windows.Forms.ColumnHeader();
     this.clhUnit           = new System.Windows.Forms.ColumnHeader();
     this.clhQty            = new System.Windows.Forms.ColumnHeader();
     this.clhBuyPrice       = new System.Windows.Forms.ColumnHeader();
     this.clhSalePrice      = new System.Windows.Forms.ColumnHeader();
     this.clhDiff           = new System.Windows.Forms.ColumnHeader();
     this.clhOther          = new System.Windows.Forms.ColumnHeader();
     this.groupBox1.SuspendLayout();
     this.tabAcct.SuspendLayout();
     this.tabPageUnAcct.SuspendLayout();
     this.tabPageEnAcct.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.label11);
     this.groupBox1.Controls.Add(this.m_txtSaleTolMoney);
     this.groupBox1.Controls.Add(this.m_txtBuyTolMoney);
     this.groupBox1.Controls.Add(this.m_dtbCreateDate);
     this.groupBox1.Controls.Add(this.m_txtOrdID);
     this.groupBox1.Controls.Add(this.m_txtAduit);
     this.groupBox1.Controls.Add(this.m_txtCreator);
     this.groupBox1.Controls.Add(this.m_txtOrdType);
     this.groupBox1.Controls.Add(this.m_txtMedStore);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(0, 40);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(792, 80);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(568, 54);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(63, 19);
     this.label11.TabIndex = 15;
     this.label11.Text     = "零售金额";
     //
     // m_txtSaleTolMoney
     //
     this.m_txtSaleTolMoney.EnableAutoValidation = true;
     this.m_txtSaleTolMoney.Enabled = false;
     this.m_txtSaleTolMoney.EnableEnterKeyValidate = true;
     this.m_txtSaleTolMoney.EnableEscapeKeyUndo    = true;
     this.m_txtSaleTolMoney.EnableLastValidValue   = true;
     this.m_txtSaleTolMoney.ErrorProvider          = null;
     this.m_txtSaleTolMoney.ErrorProviderMessage   = "Invalid value";
     this.m_txtSaleTolMoney.ForceFormatText        = true;
     this.m_txtSaleTolMoney.Location = new System.Drawing.Point(632, 48);
     this.m_txtSaleTolMoney.Name     = "m_txtSaleTolMoney";
     this.m_txtSaleTolMoney.TabIndex = 14;
     this.m_txtSaleTolMoney.Text     = "";
     //
     // m_txtBuyTolMoney
     //
     this.m_txtBuyTolMoney.EnableAutoValidation = false;
     this.m_txtBuyTolMoney.Enabled = false;
     this.m_txtBuyTolMoney.EnableEnterKeyValidate = true;
     this.m_txtBuyTolMoney.EnableEscapeKeyUndo    = true;
     this.m_txtBuyTolMoney.EnableLastValidValue   = true;
     this.m_txtBuyTolMoney.ErrorProvider          = null;
     this.m_txtBuyTolMoney.ErrorProviderMessage   = "Invalid value";
     this.m_txtBuyTolMoney.ForceFormatText        = true;
     this.m_txtBuyTolMoney.Location = new System.Drawing.Point(448, 48);
     this.m_txtBuyTolMoney.Name     = "m_txtBuyTolMoney";
     this.m_txtBuyTolMoney.TabIndex = 13;
     this.m_txtBuyTolMoney.Text     = "";
     //
     // m_dtbCreateDate
     //
     this.m_dtbCreateDate.Enabled  = false;
     this.m_dtbCreateDate.Location = new System.Drawing.Point(240, 48);
     this.m_dtbCreateDate.Name     = "m_dtbCreateDate";
     this.m_dtbCreateDate.Size     = new System.Drawing.Size(128, 23);
     this.m_dtbCreateDate.TabIndex = 12;
     //
     // m_txtOrdID
     //
     this.m_txtOrdID.EnableAutoValidation = false;
     this.m_txtOrdID.Enabled = false;
     this.m_txtOrdID.EnableEnterKeyValidate = true;
     this.m_txtOrdID.EnableEscapeKeyUndo    = true;
     this.m_txtOrdID.EnableLastValidValue   = true;
     this.m_txtOrdID.ErrorProvider          = null;
     this.m_txtOrdID.ErrorProviderMessage   = "Invalid value";
     this.m_txtOrdID.ForceFormatText        = true;
     this.m_txtOrdID.Location = new System.Drawing.Point(56, 48);
     this.m_txtOrdID.Name     = "m_txtOrdID";
     this.m_txtOrdID.TabIndex = 11;
     this.m_txtOrdID.Text     = "";
     //
     // m_txtAduit
     //
     this.m_txtAduit.EnableAutoValidation = false;
     this.m_txtAduit.Enabled = false;
     this.m_txtAduit.EnableEnterKeyValidate = true;
     this.m_txtAduit.EnableEscapeKeyUndo    = true;
     this.m_txtAduit.EnableLastValidValue   = true;
     this.m_txtAduit.ErrorProvider          = null;
     this.m_txtAduit.ErrorProviderMessage   = "Invalid value";
     this.m_txtAduit.ForceFormatText        = true;
     this.m_txtAduit.Location = new System.Drawing.Point(632, 16);
     this.m_txtAduit.Name     = "m_txtAduit";
     this.m_txtAduit.TabIndex = 10;
     this.m_txtAduit.Text     = "";
     //
     // m_txtCreator
     //
     this.m_txtCreator.EnableAutoValidation = false;
     this.m_txtCreator.Enabled = false;
     this.m_txtCreator.EnableEnterKeyValidate = true;
     this.m_txtCreator.EnableEscapeKeyUndo    = true;
     this.m_txtCreator.EnableLastValidValue   = true;
     this.m_txtCreator.ErrorProvider          = null;
     this.m_txtCreator.ErrorProviderMessage   = "Invalid value";
     this.m_txtCreator.ForceFormatText        = true;
     this.m_txtCreator.Location = new System.Drawing.Point(448, 16);
     this.m_txtCreator.Name     = "m_txtCreator";
     this.m_txtCreator.TabIndex = 9;
     this.m_txtCreator.Text     = "";
     //
     // m_txtOrdType
     //
     this.m_txtOrdType.EnableAutoValidation = false;
     this.m_txtOrdType.Enabled = false;
     this.m_txtOrdType.EnableEnterKeyValidate = true;
     this.m_txtOrdType.EnableEscapeKeyUndo    = true;
     this.m_txtOrdType.EnableLastValidValue   = true;
     this.m_txtOrdType.ErrorProvider          = null;
     this.m_txtOrdType.ErrorProviderMessage   = "Invalid value";
     this.m_txtOrdType.ForceFormatText        = true;
     this.m_txtOrdType.Location = new System.Drawing.Point(240, 16);
     this.m_txtOrdType.Name     = "m_txtOrdType";
     this.m_txtOrdType.Size     = new System.Drawing.Size(128, 23);
     this.m_txtOrdType.TabIndex = 8;
     this.m_txtOrdType.Text     = "";
     //
     // m_txtMedStore
     //
     this.m_txtMedStore.EnableAutoValidation = false;
     this.m_txtMedStore.Enabled = false;
     this.m_txtMedStore.EnableEnterKeyValidate = true;
     this.m_txtMedStore.EnableEscapeKeyUndo    = true;
     this.m_txtMedStore.EnableLastValidValue   = true;
     this.m_txtMedStore.ErrorProvider          = null;
     this.m_txtMedStore.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedStore.ForceFormatText        = true;
     this.m_txtMedStore.Location = new System.Drawing.Point(56, 16);
     this.m_txtMedStore.Name     = "m_txtMedStore";
     this.m_txtMedStore.TabIndex = 7;
     this.m_txtMedStore.Text     = "";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(8, 54);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(48, 19);
     this.label8.TabIndex = 6;
     this.label8.Text     = "单据号";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(384, 54);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(63, 19);
     this.label6.TabIndex = 5;
     this.label6.Text     = "购进金额";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(176, 54);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(63, 19);
     this.label5.TabIndex = 4;
     this.label5.Text     = "创建时间";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(584, 22);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(48, 19);
     this.label4.TabIndex = 3;
     this.label4.Text     = "审核员";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(176, 22);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(63, 19);
     this.label3.TabIndex = 2;
     this.label3.Text     = "单据类型";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(400, 22);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(48, 19);
     this.label2.TabIndex = 1;
     this.label2.Text     = "制单员";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(22, 22);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(34, 19);
     this.label1.TabIndex = 0;
     this.label1.Text     = "制单";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 8);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(92, 19);
     this.label7.TabIndex = 1;
     this.label7.Text     = "当前帐务期:";
     //
     // m_txtCurPeriod
     //
     this.m_txtCurPeriod.BackColor            = System.Drawing.Color.White;
     this.m_txtCurPeriod.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.m_txtCurPeriod.EnableAutoValidation = true;
     this.m_txtCurPeriod.Enabled = false;
     this.m_txtCurPeriod.EnableEnterKeyValidate = true;
     this.m_txtCurPeriod.EnableEscapeKeyUndo    = true;
     this.m_txtCurPeriod.EnableLastValidValue   = true;
     this.m_txtCurPeriod.ErrorProvider          = null;
     this.m_txtCurPeriod.ErrorProviderMessage   = "Invalid value";
     this.m_txtCurPeriod.ForceFormatText        = true;
     this.m_txtCurPeriod.Location = new System.Drawing.Point(8, 24);
     this.m_txtCurPeriod.Name     = "m_txtCurPeriod";
     this.m_txtCurPeriod.Size     = new System.Drawing.Size(168, 16);
     this.m_txtCurPeriod.TabIndex = 2;
     this.m_txtCurPeriod.Text     = "";
     //
     // tabAcct
     //
     this.tabAcct.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.tabAcct.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabAcct.Controls.Add(this.tabPageUnAcct);
     this.tabAcct.Controls.Add(this.tabPageEnAcct);
     this.tabAcct.Location      = new System.Drawing.Point(0, 128);
     this.tabAcct.Name          = "tabAcct";
     this.tabAcct.SelectedIndex = 0;
     this.tabAcct.Size          = new System.Drawing.Size(216, 312);
     this.tabAcct.TabIndex      = 3;
     //
     // tabPageUnAcct
     //
     this.tabPageUnAcct.Controls.Add(this.m_lsvUnAcct);
     this.tabPageUnAcct.Location = new System.Drawing.Point(4, 26);
     this.tabPageUnAcct.Name     = "tabPageUnAcct";
     this.tabPageUnAcct.Size     = new System.Drawing.Size(208, 282);
     this.tabPageUnAcct.TabIndex = 0;
     this.tabPageUnAcct.Text     = "未登帐";
     //
     // m_lsvUnAcct
     //
     this.m_lsvUnAcct.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhUnRow,
         this.clhUnFlag,
         this.clhUnID,
         this.clhUnType,
         this.clhUnCreateDate,
         this.clhUnCreator,
         this.clhUnAduit,
         this.clhUnSign
     });
     this.m_lsvUnAcct.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lsvUnAcct.FullRowSelect = true;
     this.m_lsvUnAcct.GridLines     = true;
     this.m_lsvUnAcct.Location      = new System.Drawing.Point(0, 0);
     this.m_lsvUnAcct.Name          = "m_lsvUnAcct";
     this.m_lsvUnAcct.Size          = new System.Drawing.Size(208, 282);
     this.m_lsvUnAcct.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvUnAcct.TabIndex      = 0;
     this.m_lsvUnAcct.View          = System.Windows.Forms.View.Details;
     this.m_lsvUnAcct.DoubleClick  += new System.EventHandler(this.m_lsvUnAcct_DoubleClick);
     //
     // clhUnRow
     //
     this.clhUnRow.Text  = "序号";
     this.clhUnRow.Width = 50;
     //
     // clhUnFlag
     //
     this.clhUnFlag.Text      = "类别";
     this.clhUnFlag.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // clhUnID
     //
     this.clhUnID.Text      = "单据号";
     this.clhUnID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnID.Width     = 100;
     //
     // clhUnType
     //
     this.clhUnType.Text      = "单据类型";
     this.clhUnType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnType.Width     = 120;
     //
     // clhUnCreateDate
     //
     this.clhUnCreateDate.Text      = "建单时间";
     this.clhUnCreateDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnCreateDate.Width     = 120;
     //
     // clhUnCreator
     //
     this.clhUnCreator.Text      = "制单人";
     this.clhUnCreator.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnCreator.Width     = 80;
     //
     // clhUnAduit
     //
     this.clhUnAduit.Text      = "审核员";
     this.clhUnAduit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnAduit.Width     = 80;
     //
     // clhUnSign
     //
     this.clhUnSign.Text  = "类别";
     this.clhUnSign.Width = 0;
     //
     // tabPageEnAcct
     //
     this.tabPageEnAcct.Controls.Add(this.m_lsvEnAcct);
     this.tabPageEnAcct.Location = new System.Drawing.Point(4, 24);
     this.tabPageEnAcct.Name     = "tabPageEnAcct";
     this.tabPageEnAcct.Size     = new System.Drawing.Size(208, 284);
     this.tabPageEnAcct.TabIndex = 1;
     this.tabPageEnAcct.Text     = "已登帐";
     //
     // m_lsvEnAcct
     //
     this.m_lsvEnAcct.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhEnRow,
         this.clhEnFlag,
         this.clhEnID,
         this.clhEnType,
         this.clhEnCreateDate,
         this.clhEnCreator,
         this.clhEnAduit,
         this.clhEnSign
     });
     this.m_lsvEnAcct.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lsvEnAcct.FullRowSelect = true;
     this.m_lsvEnAcct.GridLines     = true;
     this.m_lsvEnAcct.Location      = new System.Drawing.Point(0, 0);
     this.m_lsvEnAcct.Name          = "m_lsvEnAcct";
     this.m_lsvEnAcct.Size          = new System.Drawing.Size(208, 284);
     this.m_lsvEnAcct.TabIndex      = 0;
     this.m_lsvEnAcct.View          = System.Windows.Forms.View.Details;
     this.m_lsvEnAcct.DoubleClick  += new System.EventHandler(this.m_lsvEnAcct_DoubleClick);
     //
     // clhEnRow
     //
     this.clhEnRow.Text  = "序号";
     this.clhEnRow.Width = 50;
     //
     // clhEnFlag
     //
     this.clhEnFlag.Text      = "类别";
     this.clhEnFlag.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // clhEnID
     //
     this.clhEnID.Text      = "单据号";
     this.clhEnID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhEnID.Width     = 100;
     //
     // clhEnType
     //
     this.clhEnType.Text      = "单据类型";
     this.clhEnType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhEnType.Width     = 120;
     //
     // clhEnCreateDate
     //
     this.clhEnCreateDate.Text      = "建单时间";
     this.clhEnCreateDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhEnCreateDate.Width     = 120;
     //
     // clhEnCreator
     //
     this.clhEnCreator.Text      = "制单人";
     this.clhEnCreator.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhEnCreator.Width     = 80;
     //
     // clhEnAduit
     //
     this.clhEnAduit.Text      = "审核员";
     this.clhEnAduit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhEnAduit.Width     = 80;
     //
     // clhEnSign
     //
     this.clhEnSign.Text  = "类别";
     this.clhEnSign.Width = 0;
     //
     // label9
     //
     this.label9.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(16, 448);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(77, 19);
     this.label9.TabIndex = 4;
     this.label9.Text     = "选择帐务期";
     //
     // m_cboSelPeriod
     //
     this.m_cboSelPeriod.Anchor                = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.m_cboSelPeriod.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboSelPeriod.Location              = new System.Drawing.Point(16, 472);
     this.m_cboSelPeriod.Name                  = "m_cboSelPeriod";
     this.m_cboSelPeriod.Size                  = new System.Drawing.Size(192, 22);
     this.m_cboSelPeriod.TabIndex              = 0;
     this.m_cboSelPeriod.SelectedIndexChanged += new System.EventHandler(this.m_cboSelPeriod_SelectedIndexChanged);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.m_cmdClose);
     this.groupBox2.Controls.Add(this.m_cmdPrint);
     this.groupBox2.Controls.Add(this.m_cmdAcct);
     this.groupBox2.Location = new System.Drawing.Point(224, 400);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(568, 112);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Enter   += new System.EventHandler(this.groupBox2_Enter);
     //
     // m_cmdClose
     //
     this.m_cmdClose.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdClose.DefaultScheme = true;
     this.m_cmdClose.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdClose.Hint          = "";
     this.m_cmdClose.Location      = new System.Drawing.Point(224, 48);
     this.m_cmdClose.Name          = "m_cmdClose";
     this.m_cmdClose.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdClose.Size          = new System.Drawing.Size(88, 32);
     this.m_cmdClose.TabIndex      = 2;
     this.m_cmdClose.Text          = "关闭(&C)";
     this.m_cmdClose.Click        += new System.EventHandler(this.m_cmdClose_Click);
     //
     // m_cmdPrint
     //
     this.m_cmdPrint.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdPrint.DefaultScheme = true;
     this.m_cmdPrint.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdPrint.Hint          = "";
     this.m_cmdPrint.Location      = new System.Drawing.Point(112, 48);
     this.m_cmdPrint.Name          = "m_cmdPrint";
     this.m_cmdPrint.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdPrint.Size          = new System.Drawing.Size(88, 32);
     this.m_cmdPrint.TabIndex      = 1;
     this.m_cmdPrint.Text          = "打印(&P)";
     //
     // m_cmdAcct
     //
     this.m_cmdAcct.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdAcct.DefaultScheme = true;
     this.m_cmdAcct.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdAcct.Hint          = "";
     this.m_cmdAcct.Location      = new System.Drawing.Point(8, 48);
     this.m_cmdAcct.Name          = "m_cmdAcct";
     this.m_cmdAcct.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdAcct.Size          = new System.Drawing.Size(88, 32);
     this.m_cmdAcct.TabIndex      = 0;
     this.m_cmdAcct.Text          = "登帐(&A)";
     this.m_cmdAcct.Click        += new System.EventHandler(this.m_cmdAcct_Click);
     //
     // m_lsvDetail
     //
     this.m_lsvDetail.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.m_lsvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhRowNo,
         this.clhMedID,
         this.clhMedName,
         this.clhMedSpec,
         this.clhUnit,
         this.clhQty,
         this.clhBuyPrice,
         this.clhSalePrice,
         this.clhDiff,
         this.clhOther
     });
     this.m_lsvDetail.FullRowSelect = true;
     this.m_lsvDetail.GridLines     = true;
     this.m_lsvDetail.Location      = new System.Drawing.Point(224, 128);
     this.m_lsvDetail.Name          = "m_lsvDetail";
     this.m_lsvDetail.Size          = new System.Drawing.Size(568, 272);
     this.m_lsvDetail.TabIndex      = 7;
     this.m_lsvDetail.View          = System.Windows.Forms.View.Details;
     //
     // clhRowNo
     //
     this.clhRowNo.Text = "行号";
     //
     // clhMedID
     //
     this.clhMedID.Text      = "药品代码";
     this.clhMedID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhMedID.Width     = 80;
     //
     // clhMedName
     //
     this.clhMedName.Text      = "药品名称";
     this.clhMedName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhMedName.Width     = 100;
     //
     // clhMedSpec
     //
     this.clhMedSpec.Text      = "药品规格";
     this.clhMedSpec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhMedSpec.Width     = 100;
     //
     // clhUnit
     //
     this.clhUnit.Text      = "单位";
     this.clhUnit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnit.Width     = 100;
     //
     // clhQty
     //
     this.clhQty.Text      = "数量";
     this.clhQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhQty.Width     = 80;
     //
     // clhBuyPrice
     //
     this.clhBuyPrice.Text      = "购进价";
     this.clhBuyPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhBuyPrice.Width     = 80;
     //
     // clhSalePrice
     //
     this.clhSalePrice.Text      = "零售价";
     this.clhSalePrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhSalePrice.Width     = 80;
     //
     // clhDiff
     //
     this.clhDiff.Text      = "差额";
     this.clhDiff.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhDiff.Width     = 80;
     //
     // clhOther
     //
     this.clhOther.Text      = "";
     this.clhOther.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhOther.Width     = 0;
     //
     // frmMedStoreAcct
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(792, 517);
     this.Controls.Add(this.m_lsvDetail);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.m_cboSelPeriod);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.m_txtCurPeriod);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.tabAcct);
     this.Controls.Add(this.groupBox1);
     this.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name          = "frmMedStoreAcct";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "登帐";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.frmStorageAcct_Load);
     this.groupBox1.ResumeLayout(false);
     this.tabAcct.ResumeLayout(false);
     this.tabPageUnAcct.ResumeLayout(false);
     this.tabPageEnAcct.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #5
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_pnlList                = new System.Windows.Forms.Panel();
     this.m_lvw                    = new System.Windows.Forms.ListView();
     this.colReg                   = new System.Windows.Forms.ColumnHeader();
     this.colRegTYPEID             = new System.Windows.Forms.ColumnHeader();
     this.colRegType               = new System.Windows.Forms.ColumnHeader();
     this.colRegMemo               = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3            = new System.Windows.Forms.ColumnHeader();
     this.colUrgency               = new System.Windows.Forms.ColumnHeader();
     this.m_pnlButton              = new System.Windows.Forms.Panel();
     this.m_chkEmergency           = new System.Windows.Forms.CheckBox();
     this.m_txtREGISTERTYPENO_VCHR = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtName                = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.ra3            = new System.Windows.Forms.RadioButton();
     this.ra2            = new System.Windows.Forms.RadioButton();
     this.ra1            = new System.Windows.Forms.RadioButton();
     this.m_lblIsStopUse = new System.Windows.Forms.Label();
     this.m_btnStopUse   = new PinkieControls.ButtonXP();
     this.m_txtMemo      = new System.Windows.Forms.TextBox();
     this.m_lblMemo      = new System.Windows.Forms.Label();
     this.m_btnExit      = new PinkieControls.ButtonXP();
     this.m_btnDelete    = new PinkieControls.ButtonXP();
     this.m_btnSave      = new PinkieControls.ButtonXP();
     this.m_btnNew       = new PinkieControls.ButtonXP();
     this.m_lblName      = new System.Windows.Forms.Label();
     this.label1         = new System.Windows.Forms.Label();
     this.m_pnlList.SuspendLayout();
     this.m_pnlButton.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_pnlList
     //
     this.m_pnlList.Controls.Add(this.m_lvw);
     this.m_pnlList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.m_pnlList.Location = new System.Drawing.Point(0, 0);
     this.m_pnlList.Name     = "m_pnlList";
     this.m_pnlList.Size     = new System.Drawing.Size(754, 463);
     this.m_pnlList.TabIndex = 0;
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colReg,
         this.colRegTYPEID,
         this.colRegType,
         this.colRegMemo,
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.colUrgency
     });
     this.m_lvw.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.m_lvw.FullRowSelect         = true;
     this.m_lvw.GridLines             = true;
     this.m_lvw.HideSelection         = false;
     this.m_lvw.Location              = new System.Drawing.Point(0, 0);
     this.m_lvw.MultiSelect           = false;
     this.m_lvw.Name                  = "m_lvw";
     this.m_lvw.Size                  = new System.Drawing.Size(754, 463);
     this.m_lvw.TabIndex              = 63;
     this.m_lvw.View                  = System.Windows.Forms.View.Details;
     this.m_lvw.Click                += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // colReg
     //
     this.colReg.Text  = "";
     this.colReg.Width = 0;
     //
     // colRegTYPEID
     //
     this.colRegTYPEID.Text      = "编号";
     this.colRegTYPEID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colRegTYPEID.Width     = 91;
     //
     // colRegType
     //
     this.colRegType.Text      = "挂号种类";
     this.colRegType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colRegType.Width     = 102;
     //
     // colRegMemo
     //
     this.colRegMemo.Text      = "备注";
     this.colRegMemo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colRegMemo.Width     = 121;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "挂号类型编号";
     this.columnHeader1.Width = 126;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "状态";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 0;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "医生";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 0;
     //
     // colUrgency
     //
     this.colUrgency.Text      = "是否急诊";
     this.colUrgency.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colUrgency.Width     = 80;
     //
     // m_pnlButton
     //
     this.m_pnlButton.Controls.Add(this.m_chkEmergency);
     this.m_pnlButton.Controls.Add(this.m_txtREGISTERTYPENO_VCHR);
     this.m_pnlButton.Controls.Add(this.m_txtName);
     this.m_pnlButton.Controls.Add(this.groupBox1);
     this.m_pnlButton.Controls.Add(this.m_lblIsStopUse);
     this.m_pnlButton.Controls.Add(this.m_btnStopUse);
     this.m_pnlButton.Controls.Add(this.m_txtMemo);
     this.m_pnlButton.Controls.Add(this.m_lblMemo);
     this.m_pnlButton.Controls.Add(this.m_btnExit);
     this.m_pnlButton.Controls.Add(this.m_btnDelete);
     this.m_pnlButton.Controls.Add(this.m_btnSave);
     this.m_pnlButton.Controls.Add(this.m_btnNew);
     this.m_pnlButton.Controls.Add(this.m_lblName);
     this.m_pnlButton.Controls.Add(this.label1);
     this.m_pnlButton.Dock     = System.Windows.Forms.DockStyle.Right;
     this.m_pnlButton.Location = new System.Drawing.Point(530, 0);
     this.m_pnlButton.Name     = "m_pnlButton";
     this.m_pnlButton.Size     = new System.Drawing.Size(224, 463);
     this.m_pnlButton.TabIndex = 1;
     //
     // m_chkEmergency
     //
     this.m_chkEmergency.Location = new System.Drawing.Point(116, 216);
     this.m_chkEmergency.Name     = "m_chkEmergency";
     this.m_chkEmergency.Size     = new System.Drawing.Size(56, 24);
     this.m_chkEmergency.TabIndex = 18;
     this.m_chkEmergency.Text     = "急诊";
     this.m_chkEmergency.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_chkEmergency_KeyDown);
     //
     // m_txtREGISTERTYPENO_VCHR
     //
     this.m_txtREGISTERTYPENO_VCHR.EnableAutoValidation   = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableEnterKeyValidate = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableEscapeKeyUndo    = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableLastValidValue   = true;
     this.m_txtREGISTERTYPENO_VCHR.ErrorProvider          = null;
     this.m_txtREGISTERTYPENO_VCHR.ErrorProviderMessage   = "Invalid value";
     this.m_txtREGISTERTYPENO_VCHR.ForceFormatText        = true;
     this.m_txtREGISTERTYPENO_VCHR.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_txtREGISTERTYPENO_VCHR.Location  = new System.Drawing.Point(80, 124);
     this.m_txtREGISTERTYPENO_VCHR.MaxLength = 4;
     this.m_txtREGISTERTYPENO_VCHR.Name      = "m_txtREGISTERTYPENO_VCHR";
     this.m_txtREGISTERTYPENO_VCHR.Size      = new System.Drawing.Size(128, 23);
     this.m_txtREGISTERTYPENO_VCHR.TabIndex  = 17;
     this.m_txtREGISTERTYPENO_VCHR.Text      = "";
     this.m_txtREGISTERTYPENO_VCHR.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtREGISTERTYPENO_VCHR_KeyDown);
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(80, 44);
     this.m_txtName.MaxLength = 20;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(128, 23);
     this.m_txtName.TabIndex  = 0;
     this.m_txtName.Text      = "";
     this.m_txtName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtName_KeyDown);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ra3);
     this.groupBox1.Controls.Add(this.ra2);
     this.groupBox1.Controls.Add(this.ra1);
     this.groupBox1.Location = new System.Drawing.Point(24, 164);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(192, 48);
     this.groupBox1.TabIndex = 15;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "医生:";
     //
     // ra3
     //
     this.ra3.Location  = new System.Drawing.Point(132, 20);
     this.ra3.Name      = "ra3";
     this.ra3.Size      = new System.Drawing.Size(56, 24);
     this.ra3.TabIndex  = 2;
     this.ra3.Text      = "必需";
     this.ra3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.ra3.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ra3_KeyDown);
     //
     // ra2
     //
     this.ra2.Location  = new System.Drawing.Point(72, 20);
     this.ra2.Name      = "ra2";
     this.ra2.Size      = new System.Drawing.Size(52, 24);
     this.ra2.TabIndex  = 1;
     this.ra2.Text      = "不需";
     this.ra2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.ra2.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ra2_KeyDown);
     //
     // ra1
     //
     this.ra1.Location  = new System.Drawing.Point(16, 20);
     this.ra1.Name      = "ra1";
     this.ra1.Size      = new System.Drawing.Size(52, 24);
     this.ra1.TabIndex  = 0;
     this.ra1.Text      = "可有";
     this.ra1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.ra1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ra1_KeyDown);
     //
     // m_lblIsStopUse
     //
     this.m_lblIsStopUse.Location  = new System.Drawing.Point(80, 12);
     this.m_lblIsStopUse.Name      = "m_lblIsStopUse";
     this.m_lblIsStopUse.Size      = new System.Drawing.Size(128, 23);
     this.m_lblIsStopUse.TabIndex  = 14;
     this.m_lblIsStopUse.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // m_btnStopUse
     //
     this.m_btnStopUse.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnStopUse.DefaultScheme = true;
     this.m_btnStopUse.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnStopUse.Hint          = "";
     this.m_btnStopUse.Location      = new System.Drawing.Point(84, 328);
     this.m_btnStopUse.Name          = "m_btnStopUse";
     this.m_btnStopUse.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnStopUse.Size          = new System.Drawing.Size(128, 32);
     this.m_btnStopUse.TabIndex      = 13;
     this.m_btnStopUse.Text          = "停用";
     this.m_btnStopUse.Click        += new System.EventHandler(this.m_btnStopUse_Click);
     //
     // m_txtMemo
     //
     this.m_txtMemo.Location  = new System.Drawing.Point(80, 84);
     this.m_txtMemo.MaxLength = 100;
     this.m_txtMemo.Name      = "m_txtMemo";
     this.m_txtMemo.Size      = new System.Drawing.Size(128, 23);
     this.m_txtMemo.TabIndex  = 2;
     this.m_txtMemo.Text      = "";
     this.m_txtMemo.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtMemo_KeyDown);
     //
     // m_lblMemo
     //
     this.m_lblMemo.Location = new System.Drawing.Point(32, 92);
     this.m_lblMemo.Name     = "m_lblMemo";
     this.m_lblMemo.Size     = new System.Drawing.Size(48, 16);
     this.m_lblMemo.TabIndex = 12;
     this.m_lblMemo.Text     = "备注:";
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(84, 408);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(128, 32);
     this.m_btnExit.TabIndex      = 9;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // m_btnDelete
     //
     this.m_btnDelete.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnDelete.DefaultScheme = true;
     this.m_btnDelete.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDelete.Hint          = "";
     this.m_btnDelete.Location      = new System.Drawing.Point(84, 368);
     this.m_btnDelete.Name          = "m_btnDelete";
     this.m_btnDelete.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDelete.Size          = new System.Drawing.Size(128, 32);
     this.m_btnDelete.TabIndex      = 8;
     this.m_btnDelete.Text          = "删除(&D)";
     this.m_btnDelete.Click        += new System.EventHandler(this.m_btnDelete_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(84, 288);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(128, 32);
     this.m_btnSave.TabIndex      = 7;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(84, 248);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(128, 32);
     this.m_btnNew.TabIndex      = 6;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // m_lblName
     //
     this.m_lblName.Location = new System.Drawing.Point(32, 52);
     this.m_lblName.Name     = "m_lblName";
     this.m_lblName.Size     = new System.Drawing.Size(48, 16);
     this.m_lblName.TabIndex = 0;
     this.m_lblName.Text     = "名称:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(32, 132);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(48, 16);
     this.label1.TabIndex = 12;
     this.label1.Text     = "编号:";
     //
     // frmRegType
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(754, 463);
     this.Controls.Add(this.m_pnlButton);
     this.Controls.Add(this.m_pnlList);
     this.Font            = new System.Drawing.Font("宋体", 10.5F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(500, 360);
     this.Name            = "frmRegType";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "挂号种类";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmRegType_KeyDown);
     this.Load           += new System.EventHandler(this.frmRegType_Load);
     this.m_pnlList.ResumeLayout(false);
     this.m_pnlButton.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #6
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMedStoreWin));
     this.groupBox3           = new System.Windows.Forms.GroupBox();
     this.label5              = new System.Windows.Forms.Label();
     this.m_cboWindowType     = new System.Windows.Forms.ComboBox();
     this.m_lsvDetail         = new System.Windows.Forms.ListView();
     this.clhMedStoreWindowID = new System.Windows.Forms.ColumnHeader();
     this.clhMedStoreName     = new System.Windows.Forms.ColumnHeader();
     this.clhWinName          = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3       = new System.Windows.Forms.ColumnHeader();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.btnPrivate          = new PinkieControls.ButtonXP();
     this.m_cmdClose          = new PinkieControls.ButtonXP();
     this.m_cmdRefersh        = new PinkieControls.ButtonXP();
     this.m_cmdDelete         = new PinkieControls.ButtonXP();
     this.m_cmdNew            = new PinkieControls.ButtonXP();
     this.m_cmdSave           = new PinkieControls.ButtonXP();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.cboWinprop          = new System.Windows.Forms.ComboBox();
     this.label6              = new System.Windows.Forms.Label();
     this.m_cboWinStyle       = new System.Windows.Forms.ComboBox();
     this.m_cboWorkStatus     = new System.Windows.Forms.ComboBox();
     this.label4              = new System.Windows.Forms.Label();
     this.label3              = new System.Windows.Forms.Label();
     this.m_txtWinName        = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label2              = new System.Windows.Forms.Label();
     this.m_cboMedStore       = new System.Windows.Forms.ComboBox();
     this.label1              = new System.Windows.Forms.Label();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.m_cboWindowType);
     this.groupBox3.Location = new System.Drawing.Point(8, 1);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(208, 47);
     this.groupBox3.TabIndex = 3;
     this.groupBox3.TabStop  = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 19);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(63, 14);
     this.label5.TabIndex = 5;
     this.label5.Text     = "窗口分类";
     //
     // m_cboWindowType
     //
     this.m_cboWindowType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboWindowType.Items.AddRange(new object[] {
         "发药窗口",
         "配药窗口",
         "全部"
     });
     this.m_cboWindowType.Location              = new System.Drawing.Point(72, 17);
     this.m_cboWindowType.Name                  = "m_cboWindowType";
     this.m_cboWindowType.Size                  = new System.Drawing.Size(120, 22);
     this.m_cboWindowType.TabIndex              = 3;
     this.m_cboWindowType.SelectedIndexChanged += new System.EventHandler(this.m_cboWindowType_SelectedIndexChanged);
     this.m_cboWindowType.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.m_cboWindowType_KeyDown);
     //
     // m_lsvDetail
     //
     this.m_lsvDetail.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.m_lsvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhMedStoreWindowID,
         this.clhMedStoreName,
         this.clhWinName,
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3
     });
     this.m_lsvDetail.FullRowSelect = true;
     this.m_lsvDetail.GridLines     = true;
     this.m_lsvDetail.HideSelection = false;
     this.m_lsvDetail.Location      = new System.Drawing.Point(224, 8);
     this.m_lsvDetail.MultiSelect   = false;
     this.m_lsvDetail.Name          = "m_lsvDetail";
     this.m_lsvDetail.Size          = new System.Drawing.Size(712, 648);
     this.m_lsvDetail.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvDetail.TabIndex      = 2;
     this.m_lsvDetail.UseCompatibleStateImageBehavior = false;
     this.m_lsvDetail.View         = System.Windows.Forms.View.Details;
     this.m_lsvDetail.DoubleClick += new System.EventHandler(this.m_lsvDetail_DoubleClick);
     //
     // clhMedStoreWindowID
     //
     this.clhMedStoreWindowID.Text  = "窗口ID";
     this.clhMedStoreWindowID.Width = 75;
     //
     // clhMedStoreName
     //
     this.clhMedStoreName.Text      = "药房名称";
     this.clhMedStoreName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhMedStoreName.Width     = 179;
     //
     // clhWinName
     //
     this.clhWinName.Text      = "窗口名";
     this.clhWinName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhWinName.Width     = 143;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "窗口类型";
     this.columnHeader1.Width = 94;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "工作状态";
     this.columnHeader2.Width = 81;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "窗口属性";
     this.columnHeader3.Width = 90;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox2.Controls.Add(this.btnPrivate);
     this.groupBox2.Controls.Add(this.m_cmdClose);
     this.groupBox2.Controls.Add(this.m_cmdRefersh);
     this.groupBox2.Controls.Add(this.m_cmdDelete);
     this.groupBox2.Controls.Add(this.m_cmdNew);
     this.groupBox2.Controls.Add(this.m_cmdSave);
     this.groupBox2.Location = new System.Drawing.Point(8, 284);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(208, 372);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     //
     // btnPrivate
     //
     this.btnPrivate.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.btnPrivate.DefaultScheme = true;
     this.btnPrivate.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.btnPrivate.Hint          = "";
     this.btnPrivate.Location      = new System.Drawing.Point(38, 242);
     this.btnPrivate.Name          = "btnPrivate";
     this.btnPrivate.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.btnPrivate.Size          = new System.Drawing.Size(128, 32);
     this.btnPrivate.TabIndex      = 5;
     this.btnPrivate.Text          = "专用窗口设置(&P)";
     this.btnPrivate.Click        += new System.EventHandler(this.btnPrivate_Click);
     //
     // m_cmdClose
     //
     this.m_cmdClose.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdClose.DefaultScheme = true;
     this.m_cmdClose.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdClose.Hint          = "";
     this.m_cmdClose.Location      = new System.Drawing.Point(38, 297);
     this.m_cmdClose.Name          = "m_cmdClose";
     this.m_cmdClose.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdClose.Size          = new System.Drawing.Size(128, 32);
     this.m_cmdClose.TabIndex      = 4;
     this.m_cmdClose.Text          = "退出(&E)";
     this.m_cmdClose.Click        += new System.EventHandler(this.m_cmdClose_Click);
     //
     // m_cmdRefersh
     //
     this.m_cmdRefersh.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdRefersh.DefaultScheme = true;
     this.m_cmdRefersh.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdRefersh.Hint          = "";
     this.m_cmdRefersh.Location      = new System.Drawing.Point(38, 187);
     this.m_cmdRefersh.Name          = "m_cmdRefersh";
     this.m_cmdRefersh.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdRefersh.Size          = new System.Drawing.Size(128, 32);
     this.m_cmdRefersh.TabIndex      = 3;
     this.m_cmdRefersh.Text          = "刷新(&R)";
     this.m_cmdRefersh.Click        += new System.EventHandler(this.m_cmdRefersh_Click);
     //
     // m_cmdDelete
     //
     this.m_cmdDelete.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdDelete.DefaultScheme = true;
     this.m_cmdDelete.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdDelete.Hint          = "";
     this.m_cmdDelete.Location      = new System.Drawing.Point(38, 132);
     this.m_cmdDelete.Name          = "m_cmdDelete";
     this.m_cmdDelete.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdDelete.Size          = new System.Drawing.Size(128, 32);
     this.m_cmdDelete.TabIndex      = 2;
     this.m_cmdDelete.Text          = "删除(&D)";
     this.m_cmdDelete.Click        += new System.EventHandler(this.m_cmdDelete_Click);
     //
     // m_cmdNew
     //
     this.m_cmdNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdNew.DefaultScheme = true;
     this.m_cmdNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdNew.Hint          = "";
     this.m_cmdNew.Location      = new System.Drawing.Point(38, 22);
     this.m_cmdNew.Name          = "m_cmdNew";
     this.m_cmdNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdNew.Size          = new System.Drawing.Size(128, 32);
     this.m_cmdNew.TabIndex      = 1;
     this.m_cmdNew.Text          = "新增(&A)";
     this.m_cmdNew.Click        += new System.EventHandler(this.m_cmdNew_Click);
     this.m_cmdNew.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.m_cmdNew_KeyDown);
     //
     // m_cmdSave
     //
     this.m_cmdSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdSave.DefaultScheme = true;
     this.m_cmdSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdSave.Hint          = "";
     this.m_cmdSave.Location      = new System.Drawing.Point(38, 77);
     this.m_cmdSave.Name          = "m_cmdSave";
     this.m_cmdSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdSave.Size          = new System.Drawing.Size(128, 32);
     this.m_cmdSave.TabIndex      = 0;
     this.m_cmdSave.Text          = "保存(&S)";
     this.m_cmdSave.Click        += new System.EventHandler(this.m_cmdSave_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cboWinprop);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.m_cboWinStyle);
     this.groupBox1.Controls.Add(this.m_cboWorkStatus);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.m_txtWinName);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_cboMedStore);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(8, 46);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(208, 238);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // cboWinprop
     //
     this.cboWinprop.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboWinprop.Items.AddRange(new object[] {
         "普通",
         "专用"
     });
     this.cboWinprop.Location = new System.Drawing.Point(72, 195);
     this.cboWinprop.Name     = "cboWinprop";
     this.cboWinprop.Size     = new System.Drawing.Size(120, 22);
     this.cboWinprop.TabIndex = 7;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(7, 200);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(63, 14);
     this.label6.TabIndex = 6;
     this.label6.Text     = "窗口属性";
     //
     // m_cboWinStyle
     //
     this.m_cboWinStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboWinStyle.Items.AddRange(new object[] {
         "发药窗口",
         "配药窗口"
     });
     this.m_cboWinStyle.Location = new System.Drawing.Point(72, 113);
     this.m_cboWinStyle.Name     = "m_cboWinStyle";
     this.m_cboWinStyle.Size     = new System.Drawing.Size(120, 22);
     this.m_cboWinStyle.TabIndex = 3;
     this.m_cboWinStyle.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_cboWinStyle_KeyDown);
     //
     // m_cboWorkStatus
     //
     this.m_cboWorkStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboWorkStatus.Items.AddRange(new object[] {
         "停止中",
         "工作中"
     });
     this.m_cboWorkStatus.Location = new System.Drawing.Point(72, 154);
     this.m_cboWorkStatus.Name     = "m_cboWorkStatus";
     this.m_cboWorkStatus.Size     = new System.Drawing.Size(120, 22);
     this.m_cboWorkStatus.TabIndex = 4;
     this.m_cboWorkStatus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_cboWorkStatus_KeyDown);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 158);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(63, 14);
     this.label4.TabIndex = 5;
     this.label4.Text     = "工作状态";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(7, 116);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(63, 14);
     this.label3.TabIndex = 4;
     this.label3.Text     = "窗口类型";
     //
     // m_txtWinName
     //
     this.m_txtWinName.EnableAutoValidation   = false;
     this.m_txtWinName.EnableEnterKeyValidate = true;
     this.m_txtWinName.EnableEscapeKeyUndo    = true;
     this.m_txtWinName.EnableLastValidValue   = true;
     this.m_txtWinName.ErrorProvider          = null;
     this.m_txtWinName.ErrorProviderMessage   = "Invalid value";
     this.m_txtWinName.ForceFormatText        = true;
     this.m_txtWinName.Location = new System.Drawing.Point(72, 71);
     this.m_txtWinName.Name     = "m_txtWinName";
     this.m_txtWinName.Size     = new System.Drawing.Size(120, 23);
     this.m_txtWinName.TabIndex = 2;
     this.m_txtWinName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_txtWinName_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(35, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(35, 14);
     this.label2.TabIndex = 2;
     this.label2.Text     = "药房";
     //
     // m_cboMedStore
     //
     this.m_cboMedStore.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboMedStore.Location      = new System.Drawing.Point(72, 30);
     this.m_cboMedStore.Name          = "m_cboMedStore";
     this.m_cboMedStore.Size          = new System.Drawing.Size(120, 22);
     this.m_cboMedStore.TabIndex      = 1;
     this.m_cboMedStore.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.m_cboMedStore_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(21, 74);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(49, 14);
     this.label1.TabIndex = 0;
     this.label1.Text     = "窗口名";
     //
     // frmMedStoreWin
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(946, 665);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.m_lsvDetail);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "frmMedStoreWin";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "药房窗口设置";
     this.Load           += new System.EventHandler(this.frmMedStoreWin_Load);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #7
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.textBox1      = new System.Windows.Forms.TextBox();
     this.label5        = new System.Windows.Forms.Label();
     this.checkBox1     = new System.Windows.Forms.CheckBox();
     this.label1        = new System.Windows.Forms.Label();
     this.m_cboSign     = new System.Windows.Forms.ComboBox();
     this.m_txtName     = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtID       = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label3        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.m_cmdClose    = new PinkieControls.ButtonXP();
     this.m_cmdRefersh  = new PinkieControls.ButtonXP();
     this.m_cmdDelete   = new PinkieControls.ButtonXP();
     this.m_cmdNew      = new PinkieControls.ButtonXP();
     this.m_cmdSave     = new PinkieControls.ButtonXP();
     this.m_lsvDetail   = new System.Windows.Forms.ListView();
     this.clhID         = new System.Windows.Forms.ColumnHeader();
     this.clhName       = new System.Windows.Forms.ColumnHeader();
     this.clhSign       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.m_cboSign);
     this.groupBox1.Controls.Add(this.m_txtName);
     this.groupBox1.Controls.Add(this.m_txtID);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(272, 191);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     //
     // textBox1
     //
     this.textBox1.Location  = new System.Drawing.Point(104, 112);
     this.textBox1.MaxLength = 2;
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(38, 23);
     this.textBox1.TabIndex  = 15;
     //
     // label5
     //
     this.label5.ForeColor = System.Drawing.Color.DarkOrange;
     this.label5.Location  = new System.Drawing.Point(150, 111);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(116, 23);
     this.label5.TabIndex  = 18;
     this.label5.Text      = "[两位英文字母]";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(104, 154);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(152, 18);
     this.checkBox1.TabIndex = 16;
     this.checkBox1.Text     = "药库出药给药房使用";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(9, 113);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(92, 23);
     this.label1.TabIndex  = 17;
     this.label1.Text      = "单据号标识:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_cboSign
     //
     this.m_cboSign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboSign.Items.AddRange(new object[] {
         "药房进药",
         "药房出药",
         "调拔入库",
         "调拔出库"
     });
     this.m_cboSign.Location = new System.Drawing.Point(104, 72);
     this.m_cboSign.Name     = "m_cboSign";
     this.m_cboSign.Size     = new System.Drawing.Size(121, 22);
     this.m_cboSign.TabIndex = 5;
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = false;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location = new System.Drawing.Point(104, 32);
     this.m_txtName.Name     = "m_txtName";
     this.m_txtName.Size     = new System.Drawing.Size(121, 23);
     this.m_txtName.TabIndex = 4;
     //
     // m_txtID
     //
     this.m_txtID.EnableAutoValidation   = false;
     this.m_txtID.EnableEnterKeyValidate = true;
     this.m_txtID.EnableEscapeKeyUndo    = true;
     this.m_txtID.EnableLastValidValue   = true;
     this.m_txtID.ErrorProvider          = null;
     this.m_txtID.ErrorProviderMessage   = "Invalid value";
     this.m_txtID.ForceFormatText        = true;
     this.m_txtID.Location         = new System.Drawing.Point(104, 22);
     this.m_txtID.Name             = "m_txtID";
     this.m_txtID.NumericCharStyle = ((SourceLibrary.Windows.Forms.NumericCharStyle)((SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator | SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol)));
     this.m_txtID.Size             = new System.Drawing.Size(121, 23);
     this.m_txtID.TabIndex         = 3;
     this.m_txtID.Text             = "0";
     this.m_txtID.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtID.Visible          = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(61, 80);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(42, 14);
     this.label3.TabIndex = 2;
     this.label3.Text     = "标识:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(98, 14);
     this.label2.TabIndex = 1;
     this.label2.Text     = "单据类型名称:";
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox2.Controls.Add(this.m_cmdClose);
     this.groupBox2.Controls.Add(this.m_cmdRefersh);
     this.groupBox2.Controls.Add(this.m_cmdDelete);
     this.groupBox2.Controls.Add(this.m_cmdNew);
     this.groupBox2.Controls.Add(this.m_cmdSave);
     this.groupBox2.Location = new System.Drawing.Point(0, 220);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(272, 292);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     //
     // m_cmdClose
     //
     this.m_cmdClose.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdClose.DefaultScheme = true;
     this.m_cmdClose.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdClose.Hint          = "";
     this.m_cmdClose.Location      = new System.Drawing.Point(69, 219);
     this.m_cmdClose.Name          = "m_cmdClose";
     this.m_cmdClose.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdClose.Size          = new System.Drawing.Size(152, 32);
     this.m_cmdClose.TabIndex      = 4;
     this.m_cmdClose.Text          = "退出(&E)";
     this.m_cmdClose.Click        += new System.EventHandler(this.m_cmdClose_Click);
     //
     // m_cmdRefersh
     //
     this.m_cmdRefersh.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdRefersh.DefaultScheme = true;
     this.m_cmdRefersh.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdRefersh.Hint          = "";
     this.m_cmdRefersh.Location      = new System.Drawing.Point(69, 171);
     this.m_cmdRefersh.Name          = "m_cmdRefersh";
     this.m_cmdRefersh.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdRefersh.Size          = new System.Drawing.Size(152, 32);
     this.m_cmdRefersh.TabIndex      = 3;
     this.m_cmdRefersh.Text          = "刷新(&R)";
     this.m_cmdRefersh.Click        += new System.EventHandler(this.m_cmdRefersh_Click);
     //
     // m_cmdDelete
     //
     this.m_cmdDelete.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdDelete.DefaultScheme = true;
     this.m_cmdDelete.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdDelete.Hint          = "";
     this.m_cmdDelete.Location      = new System.Drawing.Point(69, 123);
     this.m_cmdDelete.Name          = "m_cmdDelete";
     this.m_cmdDelete.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdDelete.Size          = new System.Drawing.Size(152, 32);
     this.m_cmdDelete.TabIndex      = 2;
     this.m_cmdDelete.Text          = "删除(&D)";
     this.m_cmdDelete.Click        += new System.EventHandler(this.m_cmdDelete_Click);
     //
     // m_cmdNew
     //
     this.m_cmdNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdNew.DefaultScheme = true;
     this.m_cmdNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdNew.Hint          = "";
     this.m_cmdNew.Location      = new System.Drawing.Point(69, 75);
     this.m_cmdNew.Name          = "m_cmdNew";
     this.m_cmdNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdNew.Size          = new System.Drawing.Size(152, 32);
     this.m_cmdNew.TabIndex      = 1;
     this.m_cmdNew.Text          = "新增(&A)";
     this.m_cmdNew.Click        += new System.EventHandler(this.m_cmdNew_Click);
     //
     // m_cmdSave
     //
     this.m_cmdSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_cmdSave.DefaultScheme = true;
     this.m_cmdSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdSave.Hint          = "";
     this.m_cmdSave.Location      = new System.Drawing.Point(69, 27);
     this.m_cmdSave.Name          = "m_cmdSave";
     this.m_cmdSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdSave.Size          = new System.Drawing.Size(152, 32);
     this.m_cmdSave.TabIndex      = 0;
     this.m_cmdSave.Text          = "保存(&S)";
     this.m_cmdSave.Click        += new System.EventHandler(this.m_cmdSave_Click);
     //
     // m_lsvDetail
     //
     this.m_lsvDetail.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.m_lsvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhID,
         this.clhName,
         this.clhSign,
         this.columnHeader1,
         this.columnHeader2
     });
     this.m_lsvDetail.FullRowSelect = true;
     this.m_lsvDetail.GridLines     = true;
     this.m_lsvDetail.Location      = new System.Drawing.Point(280, 8);
     this.m_lsvDetail.Name          = "m_lsvDetail";
     this.m_lsvDetail.Size          = new System.Drawing.Size(672, 504);
     this.m_lsvDetail.TabIndex      = 2;
     this.m_lsvDetail.UseCompatibleStateImageBehavior = false;
     this.m_lsvDetail.View         = System.Windows.Forms.View.Details;
     this.m_lsvDetail.DoubleClick += new System.EventHandler(this.m_lsvDetail_DoubleClick);
     //
     // clhID
     //
     this.clhID.Text  = "单据类型ID";
     this.clhID.Width = 89;
     //
     // clhName
     //
     this.clhName.Text      = "单据类型名称";
     this.clhName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhName.Width     = 106;
     //
     // clhSign
     //
     this.clhSign.Text      = "标识";
     this.clhSign.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhSign.Width     = 80;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "单据号标识";
     this.columnHeader1.Width = 100;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "药库对药房";
     this.columnHeader2.Width = 91;
     //
     // frmMedStoreOrdType
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(962, 519);
     this.Controls.Add(this.m_lsvDetail);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "frmMedStoreOrdType";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "药房单据类型设置";
     this.Load           += new System.EventHandler(this.frmMedStoreOrdType_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #8
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_tbr           = new System.Windows.Forms.ToolBar();
     this.tbrAutoCalc     = new System.Windows.Forms.ToolBarButton();
     this.tbrNew          = new System.Windows.Forms.ToolBarButton();
     this.tbrSave         = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1  = new System.Windows.Forms.ToolBarButton();
     this.tbrFind         = new System.Windows.Forms.ToolBarButton();
     this.tbrImp          = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton3  = new System.Windows.Forms.ToolBarButton();
     this.tbrAdd          = new System.Windows.Forms.ToolBarButton();
     this.tbrInsert       = new System.Windows.Forms.ToolBarButton();
     this.tbrDelete       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2  = new System.Windows.Forms.ToolBarButton();
     this.tbrPreView      = new System.Windows.Forms.ToolBarButton();
     this.tbrPrint        = new System.Windows.Forms.ToolBarButton();
     this.tbrClose        = new System.Windows.Forms.ToolBarButton();
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.m_lsvUnAsk      = new System.Windows.Forms.ListView();
     this.columnHeader5   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6   = new System.Windows.Forms.ColumnHeader();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.m_lsvEnAsk      = new System.Windows.Forms.ListView();
     this.columnHeader8   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10  = new System.Windows.Forms.ColumnHeader();
     this.m_lsvDetail     = new System.Windows.Forms.ListView();
     this.m_clhRowNO      = new System.Windows.Forms.ColumnHeader();
     this.m_clhMedID      = new System.Windows.Forms.ColumnHeader();
     this.m_clhMedName    = new System.Windows.Forms.ColumnHeader();
     this.m_clhMedSpec    = new System.Windows.Forms.ColumnHeader();
     this.m_clhMedUnit    = new System.Windows.Forms.ColumnHeader();
     this.m_clhQty        = new System.Windows.Forms.ColumnHeader();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.m_lsvPopUnit    = new System.Windows.Forms.ListView();
     this.columnHeader11  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14  = new System.Windows.Forms.ColumnHeader();
     this.m_txtMedID      = new com.digitalwave.iCare.gui.HIS.ctlStorageMedTextBox();
     this.m_cmdConfirm    = new PinkieControls.ButtonXP();
     this.m_txtUnit       = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtMedSpec    = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtMedName    = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label16         = new System.Windows.Forms.Label();
     this.m_txtQty        = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label13         = new System.Windows.Forms.Label();
     this.label12         = new System.Windows.Forms.Label();
     this.label11         = new System.Windows.Forms.Label();
     this.label10         = new System.Windows.Forms.Label();
     this.m_txtOrdID      = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtMemo       = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_dtpCreateDate = new System.Windows.Forms.DateTimePicker();
     this.m_txtMedStore   = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label9          = new System.Windows.Forms.Label();
     this.label8          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.m_cboStorage    = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_tbr
     //
     this.m_tbr.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.m_tbr.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbrAutoCalc,
         this.tbrNew,
         this.tbrSave,
         this.toolBarButton1,
         this.tbrFind,
         this.tbrImp,
         this.toolBarButton3,
         this.tbrAdd,
         this.tbrInsert,
         this.tbrDelete,
         this.toolBarButton2,
         this.tbrPreView,
         this.tbrPrint,
         this.tbrClose
     });
     this.m_tbr.DropDownArrows = true;
     this.m_tbr.Location       = new System.Drawing.Point(0, 0);
     this.m_tbr.Name           = "m_tbr";
     this.m_tbr.ShowToolTips   = true;
     this.m_tbr.Size           = new System.Drawing.Size(864, 43);
     this.m_tbr.TabIndex       = 0;
     this.m_tbr.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.m_tbr_ButtonClick);
     //
     // tbrAutoCalc
     //
     this.tbrAutoCalc.Text = "生成";
     //
     // tbrNew
     //
     this.tbrNew.Text        = "新建";
     this.tbrNew.ToolTipText = "新建单据";
     //
     // tbrSave
     //
     this.tbrSave.Text        = "保存";
     this.tbrSave.ToolTipText = "保存单据";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbrFind
     //
     this.tbrFind.Text        = "查找";
     this.tbrFind.ToolTipText = "查找单据";
     //
     // tbrImp
     //
     this.tbrImp.Text        = "导入";
     this.tbrImp.ToolTipText = "导入单据";
     //
     // toolBarButton3
     //
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbrAdd
     //
     this.tbrAdd.Text        = "增加";
     this.tbrAdd.ToolTipText = "增加一条记录";
     //
     // tbrInsert
     //
     this.tbrInsert.Text        = "插入";
     this.tbrInsert.ToolTipText = "插入一条记录";
     //
     // tbrDelete
     //
     this.tbrDelete.Text        = "删除";
     this.tbrDelete.ToolTipText = "删除一条记录";
     //
     // toolBarButton2
     //
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbrPreView
     //
     this.tbrPreView.Text        = "预览";
     this.tbrPreView.ToolTipText = "预览单据";
     //
     // tbrPrint
     //
     this.tbrPrint.Text        = "打印";
     this.tbrPrint.ToolTipText = "打印单据";
     this.tbrPrint.Visible     = false;
     //
     // tbrClose
     //
     this.tbrClose.Text        = "关闭";
     this.tbrClose.ToolTipText = "关闭窗口";
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(0, 136);
     this.tabControl1.Multiline     = true;
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(208, 504);
     this.tabControl1.TabIndex      = 6;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.m_lsvUnAsk);
     this.tabPage1.Location = new System.Drawing.Point(4, 26);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(200, 474);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "未处理";
     //
     // m_lsvUnAsk
     //
     this.m_lsvUnAsk.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader5,
         this.columnHeader7,
         this.columnHeader6
     });
     this.m_lsvUnAsk.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.m_lsvUnAsk.FullRowSelect         = true;
     this.m_lsvUnAsk.GridLines             = true;
     this.m_lsvUnAsk.Location              = new System.Drawing.Point(0, 0);
     this.m_lsvUnAsk.Name                  = "m_lsvUnAsk";
     this.m_lsvUnAsk.Size                  = new System.Drawing.Size(200, 474);
     this.m_lsvUnAsk.Sorting               = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvUnAsk.TabIndex              = 1;
     this.m_lsvUnAsk.View                  = System.Windows.Forms.View.Details;
     this.m_lsvUnAsk.DoubleClick          += new System.EventHandler(this.m_lsvUnAsk_DoubleClick);
     this.m_lsvUnAsk.SelectedIndexChanged += new System.EventHandler(this.m_lsvUnAsk_SelectedIndexChanged);
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "单据号";
     this.columnHeader5.Width = 110;
     //
     // columnHeader7
     //
     this.columnHeader7.Text      = "药库";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader7.Width     = 100;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "创建时间";
     this.columnHeader6.Width = 120;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.m_lsvEnAsk);
     this.tabPage2.Location = new System.Drawing.Point(4, 24);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(200, 476);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "已处理";
     //
     // m_lsvEnAsk
     //
     this.m_lsvEnAsk.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader8,
         this.columnHeader9,
         this.columnHeader10
     });
     this.m_lsvEnAsk.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lsvEnAsk.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.m_lsvEnAsk.FullRowSelect = true;
     this.m_lsvEnAsk.GridLines     = true;
     this.m_lsvEnAsk.Location      = new System.Drawing.Point(0, 0);
     this.m_lsvEnAsk.Name          = "m_lsvEnAsk";
     this.m_lsvEnAsk.Size          = new System.Drawing.Size(200, 476);
     this.m_lsvEnAsk.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvEnAsk.TabIndex      = 1;
     this.m_lsvEnAsk.View          = System.Windows.Forms.View.Details;
     this.m_lsvEnAsk.DoubleClick  += new System.EventHandler(this.m_lsvEnAsk_DoubleClick);
     //
     // columnHeader8
     //
     this.columnHeader8.Text  = "单据号";
     this.columnHeader8.Width = 110;
     //
     // columnHeader9
     //
     this.columnHeader9.Text      = "药库";
     this.columnHeader9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader9.Width     = 100;
     //
     // columnHeader10
     //
     this.columnHeader10.Text  = "创建时间";
     this.columnHeader10.Width = 120;
     //
     // m_lsvDetail
     //
     this.m_lsvDetail.Alignment          = System.Windows.Forms.ListViewAlignment.SnapToGrid;
     this.m_lsvDetail.AllowColumnReorder = true;
     this.m_lsvDetail.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.m_lsvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.m_clhRowNO,
         this.m_clhMedID,
         this.m_clhMedName,
         this.m_clhMedSpec,
         this.m_clhMedUnit,
         this.m_clhQty
     });
     this.m_lsvDetail.Font           = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lsvDetail.FullRowSelect  = true;
     this.m_lsvDetail.GridLines      = true;
     this.m_lsvDetail.HoverSelection = true;
     this.m_lsvDetail.Location       = new System.Drawing.Point(216, 136);
     this.m_lsvDetail.Name           = "m_lsvDetail";
     this.m_lsvDetail.Size           = new System.Drawing.Size(640, 384);
     this.m_lsvDetail.Sorting        = System.Windows.Forms.SortOrder.Ascending;
     this.m_lsvDetail.TabIndex       = 12;
     this.m_lsvDetail.View           = System.Windows.Forms.View.Details;
     //
     // m_clhRowNO
     //
     this.m_clhRowNO.Text      = "行号";
     this.m_clhRowNO.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // m_clhMedID
     //
     this.m_clhMedID.Text      = "代码";
     this.m_clhMedID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // m_clhMedName
     //
     this.m_clhMedName.Text      = "名称";
     this.m_clhMedName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_clhMedName.Width     = 150;
     //
     // m_clhMedSpec
     //
     this.m_clhMedSpec.Text      = "规格";
     this.m_clhMedSpec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_clhMedSpec.Width     = 120;
     //
     // m_clhMedUnit
     //
     this.m_clhMedUnit.Text      = "单位";
     this.m_clhMedUnit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_clhMedUnit.Width     = 100;
     //
     // m_clhQty
     //
     this.m_clhQty.Text      = "数量";
     this.m_clhQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_clhQty.Width     = 80;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.m_lsvPopUnit);
     this.groupBox2.Controls.Add(this.m_txtMedID);
     this.groupBox2.Controls.Add(this.m_cmdConfirm);
     this.groupBox2.Controls.Add(this.m_txtUnit);
     this.groupBox2.Controls.Add(this.m_txtMedSpec);
     this.groupBox2.Controls.Add(this.m_txtMedName);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.m_txtQty);
     this.groupBox2.Controls.Add(this.label13);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Location = new System.Drawing.Point(216, 520);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(648, 112);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop  = false;
     //
     // m_lsvPopUnit
     //
     this.m_lsvPopUnit.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader11,
         this.columnHeader12,
         this.columnHeader13,
         this.columnHeader14
     });
     this.m_lsvPopUnit.FullRowSelect = true;
     this.m_lsvPopUnit.GridLines     = true;
     this.m_lsvPopUnit.Location      = new System.Drawing.Point(80, -88);
     this.m_lsvPopUnit.Name          = "m_lsvPopUnit";
     this.m_lsvPopUnit.Size          = new System.Drawing.Size(280, 96);
     this.m_lsvPopUnit.TabIndex      = 45;
     this.m_lsvPopUnit.View          = System.Windows.Forms.View.Details;
     this.m_lsvPopUnit.Visible       = false;
     this.m_lsvPopUnit.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.m_lsvPopUnit_KeyDown);
     this.m_lsvPopUnit.DoubleClick  += new System.EventHandler(this.m_lsvPopUnit_DoubleClick);
     //
     // columnHeader11
     //
     this.columnHeader11.Text  = "单位代码";
     this.columnHeader11.Width = 80;
     //
     // columnHeader12
     //
     this.columnHeader12.Text  = "单位名称";
     this.columnHeader12.Width = 80;
     //
     // columnHeader13
     //
     this.columnHeader13.Text  = "比例关系";
     this.columnHeader13.Width = 80;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "级别";
     //
     // m_txtMedID
     //
     this.m_txtMedID.EnableAutoValidation   = false;
     this.m_txtMedID.EnableEnterKeyValidate = true;
     this.m_txtMedID.EnableEscapeKeyUndo    = true;
     this.m_txtMedID.EnableLastValidValue   = true;
     this.m_txtMedID.ErrorProvider          = null;
     this.m_txtMedID.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedID.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtMedID.ForceFormatText = true;
     this.m_txtMedID.ListViewHeight  = 120;
     this.m_txtMedID.ListViewWidth   = 450;
     this.m_txtMedID.Location        = new System.Drawing.Point(80, 24);
     this.m_txtMedID.Name            = "m_txtMedID";
     this.m_txtMedID.Size            = new System.Drawing.Size(112, 23);
     this.m_txtMedID.strStorageID    = "";
     this.m_txtMedID.TabIndex        = 8;
     this.m_txtMedID.Text            = "";
     this.m_txtMedID.KeyPress       += new System.Windows.Forms.KeyPressEventHandler(this.m_txtMedID_KeyPress);
     //
     // m_cmdConfirm
     //
     this.m_cmdConfirm.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdConfirm.DefaultScheme = true;
     this.m_cmdConfirm.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdConfirm.Hint          = "";
     this.m_cmdConfirm.Location      = new System.Drawing.Point(496, 64);
     this.m_cmdConfirm.Name          = "m_cmdConfirm";
     this.m_cmdConfirm.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdConfirm.Size          = new System.Drawing.Size(120, 32);
     this.m_cmdConfirm.TabIndex      = 11;
     this.m_cmdConfirm.Text          = "确定(&S)";
     this.m_cmdConfirm.Click        += new System.EventHandler(this.m_cmdConfirm_Click);
     //
     // m_txtUnit
     //
     this.m_txtUnit.EnableAutoValidation   = false;
     this.m_txtUnit.EnableEnterKeyValidate = true;
     this.m_txtUnit.EnableEscapeKeyUndo    = true;
     this.m_txtUnit.EnableLastValidValue   = true;
     this.m_txtUnit.ErrorProvider          = null;
     this.m_txtUnit.ErrorProviderMessage   = "Invalid value";
     this.m_txtUnit.ForceFormatText        = true;
     this.m_txtUnit.Location = new System.Drawing.Point(80, 68);
     this.m_txtUnit.Name     = "m_txtUnit";
     this.m_txtUnit.TabIndex = 9;
     this.m_txtUnit.Text     = "";
     this.m_txtUnit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_txtUnit_KeyDown);
     //
     // m_txtMedSpec
     //
     this.m_txtMedSpec.EnableAutoValidation = false;
     this.m_txtMedSpec.Enabled = false;
     this.m_txtMedSpec.EnableEnterKeyValidate = true;
     this.m_txtMedSpec.EnableEscapeKeyUndo    = true;
     this.m_txtMedSpec.EnableLastValidValue   = true;
     this.m_txtMedSpec.ErrorProvider          = null;
     this.m_txtMedSpec.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedSpec.ForceFormatText        = true;
     this.m_txtMedSpec.Location = new System.Drawing.Point(512, 24);
     this.m_txtMedSpec.Name     = "m_txtMedSpec";
     this.m_txtMedSpec.TabIndex = 10;
     this.m_txtMedSpec.Text     = "";
     //
     // m_txtMedName
     //
     this.m_txtMedName.EnableAutoValidation = false;
     this.m_txtMedName.Enabled = false;
     this.m_txtMedName.EnableEnterKeyValidate = true;
     this.m_txtMedName.EnableEscapeKeyUndo    = true;
     this.m_txtMedName.EnableLastValidValue   = true;
     this.m_txtMedName.ErrorProvider          = null;
     this.m_txtMedName.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedName.ForceFormatText        = true;
     this.m_txtMedName.Location = new System.Drawing.Point(288, 24);
     this.m_txtMedName.Name     = "m_txtMedName";
     this.m_txtMedName.Size     = new System.Drawing.Size(120, 23);
     this.m_txtMedName.TabIndex = 9;
     this.m_txtMedName.Text     = "";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(248, 72);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(34, 19);
     this.label16.TabIndex = 7;
     this.label16.Text     = "数量";
     //
     // m_txtQty
     //
     this.m_txtQty.EnableAutoValidation   = false;
     this.m_txtQty.EnableEnterKeyValidate = true;
     this.m_txtQty.EnableEscapeKeyUndo    = true;
     this.m_txtQty.EnableLastValidValue   = true;
     this.m_txtQty.ErrorProvider          = null;
     this.m_txtQty.ErrorProviderMessage   = "Invalid value";
     this.m_txtQty.ForceFormatText        = true;
     this.m_txtQty.Location         = new System.Drawing.Point(288, 68);
     this.m_txtQty.Name             = "m_txtQty";
     this.m_txtQty.NumericCharStyle = ((SourceLibrary.Windows.Forms.NumericCharStyle)((SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator | SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol)));
     this.m_txtQty.TabIndex         = 10;
     this.m_txtQty.Text             = "";
     this.m_txtQty.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(37, 72);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(34, 19);
     this.label13.TabIndex = 3;
     this.label13.Text     = "单位";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(440, 28);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(63, 19);
     this.label12.TabIndex = 2;
     this.label12.Text     = "药品规格";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(217, 28);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(63, 19);
     this.label11.TabIndex = 1;
     this.label11.Text     = "药品名称";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(8, 28);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(63, 19);
     this.label10.TabIndex = 0;
     this.label10.Text     = "药品代码";
     //
     // m_txtOrdID
     //
     this.m_txtOrdID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtOrdID.EnableAutoValidation   = false;
     this.m_txtOrdID.EnableEnterKeyValidate = true;
     this.m_txtOrdID.EnableEscapeKeyUndo    = true;
     this.m_txtOrdID.EnableLastValidValue   = true;
     this.m_txtOrdID.ErrorProvider          = null;
     this.m_txtOrdID.ErrorProviderMessage   = "Invalid value";
     this.m_txtOrdID.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtOrdID.ForceFormatText = true;
     this.m_txtOrdID.Location        = new System.Drawing.Point(520, 16);
     this.m_txtOrdID.Name            = "m_txtOrdID";
     this.m_txtOrdID.Size            = new System.Drawing.Size(320, 23);
     this.m_txtOrdID.TabIndex        = 13;
     this.m_txtOrdID.Text            = "";
     //
     // m_txtMemo
     //
     this.m_txtMemo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtMemo.EnableAutoValidation   = false;
     this.m_txtMemo.EnableEnterKeyValidate = true;
     this.m_txtMemo.EnableEscapeKeyUndo    = true;
     this.m_txtMemo.EnableLastValidValue   = true;
     this.m_txtMemo.ErrorProvider          = null;
     this.m_txtMemo.ErrorProviderMessage   = "Invalid value";
     this.m_txtMemo.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtMemo.ForceFormatText = true;
     this.m_txtMemo.Location        = new System.Drawing.Point(272, 48);
     this.m_txtMemo.Name            = "m_txtMemo";
     this.m_txtMemo.Size            = new System.Drawing.Size(568, 23);
     this.m_txtMemo.TabIndex        = 11;
     this.m_txtMemo.Text            = "";
     //
     // m_dtpCreateDate
     //
     this.m_dtpCreateDate.CalendarFont = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_dtpCreateDate.CustomFormat = "";
     this.m_dtpCreateDate.Font         = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_dtpCreateDate.Location     = new System.Drawing.Point(272, 16);
     this.m_dtpCreateDate.MaxDate      = new System.DateTime(2059, 12, 31, 0, 0, 0, 0);
     this.m_dtpCreateDate.MinDate      = new System.DateTime(2004, 1, 1, 0, 0, 0, 0);
     this.m_dtpCreateDate.Name         = "m_dtpCreateDate";
     this.m_dtpCreateDate.Size         = new System.Drawing.Size(128, 23);
     this.m_dtpCreateDate.TabIndex     = 9;
     this.m_dtpCreateDate.Value        = new System.DateTime(2004, 7, 8, 16, 15, 8, 453);
     //
     // m_txtMedStore
     //
     this.m_txtMedStore.EnableAutoValidation = false;
     this.m_txtMedStore.Enabled = false;
     this.m_txtMedStore.EnableEnterKeyValidate = true;
     this.m_txtMedStore.EnableEscapeKeyUndo    = true;
     this.m_txtMedStore.EnableLastValidValue   = true;
     this.m_txtMedStore.ErrorProvider          = null;
     this.m_txtMedStore.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedStore.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtMedStore.ForceFormatText = true;
     this.m_txtMedStore.Location        = new System.Drawing.Point(48, 48);
     this.m_txtMedStore.Name            = "m_txtMedStore";
     this.m_txtMedStore.Size            = new System.Drawing.Size(136, 23);
     this.m_txtMedStore.TabIndex        = 8;
     this.m_txtMedStore.Text            = "";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label9.Location = new System.Drawing.Point(464, 20);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(48, 19);
     this.label9.TabIndex = 6;
     this.label9.Text     = "单据号";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location = new System.Drawing.Point(232, 52);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(34, 19);
     this.label8.TabIndex = 5;
     this.label8.Text     = "备注";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(232, 20);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(34, 19);
     this.label4.TabIndex = 2;
     this.label4.Text     = "日期";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(8, 52);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(34, 19);
     this.label3.TabIndex = 1;
     this.label3.Text     = "药房";
     //
     // 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.m_cboStorage);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.m_txtOrdID);
     this.groupBox1.Controls.Add(this.m_txtMemo);
     this.groupBox1.Controls.Add(this.m_dtpCreateDate);
     this.groupBox1.Controls.Add(this.m_txtMedStore);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.groupBox1.Location = new System.Drawing.Point(0, 48);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(864, 80);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop  = false;
     //
     // m_cboStorage
     //
     this.m_cboStorage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboStorage.Location      = new System.Drawing.Point(48, 16);
     this.m_cboStorage.Name          = "m_cboStorage";
     this.m_cboStorage.Size          = new System.Drawing.Size(136, 22);
     this.m_cboStorage.TabIndex      = 16;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(34, 19);
     this.label1.TabIndex = 15;
     this.label1.Text     = "药库";
     //
     // frmMedStoreMedAppl
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(864, 653);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.m_lsvDetail);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.m_tbr);
     this.Font  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name  = "frmMedStoreMedAppl";
     this.Text  = "药房领药申请";
     this.Load += new System.EventHandler(this.frmMedStoreMedAppl_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #9
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_txtName    = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_btnExit    = new PinkieControls.ButtonXP();
     this.m_btnSave    = new PinkieControls.ButtonXP();
     this.label1       = new System.Windows.Forms.Label();
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.m_txtMemo    = new com.digitalwave.controls.ctlRichTextBox();
     this.label5       = new System.Windows.Forms.Label();
     this.m_txtAddress = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label2       = new System.Windows.Forms.Label();
     this.m_txtPhone1  = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label3       = new System.Windows.Forms.Label();
     this.m_txtPhone2  = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label4       = new System.Windows.Forms.Label();
     this.m_txtZIP     = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label6       = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location = new System.Drawing.Point(120, 32);
     this.m_txtName.Name     = "m_txtName";
     this.m_txtName.Size     = new System.Drawing.Size(328, 23);
     this.m_txtName.TabIndex = 20;
     this.m_txtName.Text     = "";
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(312, 360);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(96, 32);
     this.m_btnExit.TabIndex      = 23;
     this.m_btnExit.Text          = "退出(Esc)";
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(152, 360);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(96, 32);
     this.m_btnSave.TabIndex      = 21;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(32, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(77, 19);
     this.label1.TabIndex  = 22;
     this.label1.Text      = "医院名称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_txtMemo);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.m_txtName);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.m_btnExit);
     this.groupBox1.Controls.Add(this.m_btnSave);
     this.groupBox1.Controls.Add(this.m_txtAddress);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_txtPhone1);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.m_txtPhone2);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.m_txtZIP);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.groupBox1.Location = new System.Drawing.Point(32, 24);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(496, 408);
     this.groupBox1.TabIndex = 24;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "医院基本信息";
     //
     // m_txtMemo
     //
     this.m_txtMemo.AccessibleDescription = "";
     this.m_txtMemo.Location                   = new System.Drawing.Point(120, 232);
     this.m_txtMemo.m_BlnIgnoreUserInfo        = true;
     this.m_txtMemo.m_BlnPartControl           = false;
     this.m_txtMemo.m_BlnReadOnly              = false;
     this.m_txtMemo.m_BlnUnderLineDST          = false;
     this.m_txtMemo.m_ClrDST                   = System.Drawing.Color.Red;
     this.m_txtMemo.m_ClrOldPartInsertText     = System.Drawing.Color.Black;
     this.m_txtMemo.m_IntCanModifyTime         = 6;
     this.m_txtMemo.m_IntPartControlLength     = 0;
     this.m_txtMemo.m_IntPartControlStartIndex = 0;
     this.m_txtMemo.m_StrUserID                = "";
     this.m_txtMemo.m_StrUserName              = "";
     this.m_txtMemo.MaxLength                  = 1000;
     this.m_txtMemo.Name     = "m_txtMemo";
     this.m_txtMemo.Size     = new System.Drawing.Size(336, 96);
     this.m_txtMemo.TabIndex = 242;
     this.m_txtMemo.Text     = "";
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(40, 232);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(77, 19);
     this.label5.TabIndex  = 24;
     this.label5.Text      = "备    注:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtAddress
     //
     this.m_txtAddress.EnableAutoValidation   = true;
     this.m_txtAddress.EnableEnterKeyValidate = true;
     this.m_txtAddress.EnableEscapeKeyUndo    = true;
     this.m_txtAddress.EnableLastValidValue   = true;
     this.m_txtAddress.ErrorProvider          = null;
     this.m_txtAddress.ErrorProviderMessage   = "Invalid value";
     this.m_txtAddress.ForceFormatText        = true;
     this.m_txtAddress.Location = new System.Drawing.Point(120, 72);
     this.m_txtAddress.Name     = "m_txtAddress";
     this.m_txtAddress.Size     = new System.Drawing.Size(328, 23);
     this.m_txtAddress.TabIndex = 20;
     this.m_txtAddress.Text     = "";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(32, 72);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(77, 19);
     this.label2.TabIndex  = 22;
     this.label2.Text      = "医院地址:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtPhone1
     //
     this.m_txtPhone1.EnableAutoValidation   = true;
     this.m_txtPhone1.EnableEnterKeyValidate = true;
     this.m_txtPhone1.EnableEscapeKeyUndo    = true;
     this.m_txtPhone1.EnableLastValidValue   = true;
     this.m_txtPhone1.ErrorProvider          = null;
     this.m_txtPhone1.ErrorProviderMessage   = "Invalid value";
     this.m_txtPhone1.ForceFormatText        = true;
     this.m_txtPhone1.Location = new System.Drawing.Point(120, 112);
     this.m_txtPhone1.Name     = "m_txtPhone1";
     this.m_txtPhone1.Size     = new System.Drawing.Size(128, 23);
     this.m_txtPhone1.TabIndex = 20;
     this.m_txtPhone1.Text     = "";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(32, 112);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(84, 19);
     this.label3.TabIndex  = 22;
     this.label3.Text      = "联系电话1:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtPhone2
     //
     this.m_txtPhone2.EnableAutoValidation   = true;
     this.m_txtPhone2.EnableEnterKeyValidate = true;
     this.m_txtPhone2.EnableEscapeKeyUndo    = true;
     this.m_txtPhone2.EnableLastValidValue   = true;
     this.m_txtPhone2.ErrorProvider          = null;
     this.m_txtPhone2.ErrorProviderMessage   = "Invalid value";
     this.m_txtPhone2.ForceFormatText        = true;
     this.m_txtPhone2.Location = new System.Drawing.Point(120, 152);
     this.m_txtPhone2.Name     = "m_txtPhone2";
     this.m_txtPhone2.Size     = new System.Drawing.Size(128, 23);
     this.m_txtPhone2.TabIndex = 20;
     this.m_txtPhone2.Text     = "";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(32, 152);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(84, 19);
     this.label4.TabIndex  = 22;
     this.label4.Text      = "联系电话2:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtZIP
     //
     this.m_txtZIP.EnableAutoValidation   = true;
     this.m_txtZIP.EnableEnterKeyValidate = true;
     this.m_txtZIP.EnableEscapeKeyUndo    = true;
     this.m_txtZIP.EnableLastValidValue   = true;
     this.m_txtZIP.ErrorProvider          = null;
     this.m_txtZIP.ErrorProviderMessage   = "Invalid value";
     this.m_txtZIP.ForceFormatText        = true;
     this.m_txtZIP.Location = new System.Drawing.Point(120, 192);
     this.m_txtZIP.Name     = "m_txtZIP";
     this.m_txtZIP.Size     = new System.Drawing.Size(128, 23);
     this.m_txtZIP.TabIndex = 20;
     this.m_txtZIP.Text     = "";
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(32, 192);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(77, 19);
     this.label6.TabIndex  = 22;
     this.label6.Text      = "邮政编码:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmHISInfoDefine
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(568, 461);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmHISInfoDefine";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "医院基本信息";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmHISInfoDefine_KeyDown);
     this.Load           += new System.EventHandler(this.frmHISInfoDefine_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #10
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.checkBox1            = new System.Windows.Forms.CheckBox();
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.textBoxTypedNumeric1 = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label10                = new System.Windows.Forms.Label();
     this.label6                 = new System.Windows.Forms.Label();
     this.m_txtName              = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label2                 = new System.Windows.Forms.Label();
     this.m_txtPayMilite         = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_cboCOPAYID_CHR       = new com.digitalwave.controls.ctlQComboBox();
     this.m_cobType              = new System.Windows.Forms.ComboBox();
     this.label9                 = new System.Windows.Forms.Label();
     this.m_txtCHARGEPERCENT_DEC = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_cboPAYFLAG_DEC       = new System.Windows.Forms.ComboBox();
     this.label7                 = new System.Windows.Forms.Label();
     this.label1                 = new System.Windows.Forms.Label();
     this.labelMemo              = new System.Windows.Forms.Label();
     this.label4                 = new System.Windows.Forms.Label();
     this.label8                 = new System.Windows.Forms.Label();
     this.m_txtPAYPERCENT_DEC    = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_txtMemo              = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label5                 = new System.Windows.Forms.Label();
     this.m_txtPAYTYPENO_VCHR    = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_lblIsStopUse         = new System.Windows.Forms.Label();
     this.m_btnStopUse           = new PinkieControls.ButtonXP();
     this.m_btnDel               = new PinkieControls.ButtonXP();
     this.m_btnExit              = new PinkieControls.ButtonXP();
     this.m_btnSave              = new PinkieControls.ButtonXP();
     this.m_btnNew               = new PinkieControls.ButtonXP();
     this.label3                 = new System.Windows.Forms.Label();
     this.m_lvw          = new System.Windows.Forms.ListView();
     this.columnHeader1  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(24, 472);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(208, 24);
     this.checkBox1.TabIndex = 71;
     this.checkBox1.Text     = "需要合并同医生处方收费";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.textBoxTypedNumeric1);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.m_txtName);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_txtPayMilite);
     this.groupBox1.Controls.Add(this.m_cboCOPAYID_CHR);
     this.groupBox1.Controls.Add(this.m_cobType);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.m_txtCHARGEPERCENT_DEC);
     this.groupBox1.Controls.Add(this.m_cboPAYFLAG_DEC);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.labelMemo);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.m_txtPAYPERCENT_DEC);
     this.groupBox1.Controls.Add(this.m_txtMemo);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.m_txtPAYTYPENO_VCHR);
     this.groupBox1.Location = new System.Drawing.Point(0, 320);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(872, 136);
     this.groupBox1.TabIndex = 70;
     this.groupBox1.TabStop  = false;
     //
     // textBoxTypedNumeric1
     //
     this.textBoxTypedNumeric1.CausesValidation       = false;
     this.textBoxTypedNumeric1.EnableAutoValidation   = true;
     this.textBoxTypedNumeric1.EnableEnterKeyValidate = true;
     this.textBoxTypedNumeric1.EnableEscapeKeyUndo    = true;
     this.textBoxTypedNumeric1.EnableLastValidValue   = true;
     this.textBoxTypedNumeric1.ErrorProvider          = null;
     this.textBoxTypedNumeric1.ErrorProviderMessage   = "Invalid value";
     this.textBoxTypedNumeric1.ForceFormatText        = true;
     this.textBoxTypedNumeric1.Location         = new System.Drawing.Point(728, 99);
     this.textBoxTypedNumeric1.MaxLength        = 10;
     this.textBoxTypedNumeric1.Name             = "textBoxTypedNumeric1";
     this.textBoxTypedNumeric1.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator;
     this.textBoxTypedNumeric1.Size             = new System.Drawing.Size(120, 23);
     this.textBoxTypedNumeric1.TabIndex         = 9;
     this.textBoxTypedNumeric1.Text             = "0";
     this.textBoxTypedNumeric1.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.textBoxTypedNumeric1.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.textBoxTypedNumeric1_KeyDown);
     //
     // label10
     //
     this.label10.AutoSize  = true;
     this.label10.Location  = new System.Drawing.Point(600, 103);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(98, 14);
     this.label10.TabIndex  = 71;
     this.label10.Text      = "住院费用下限:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(16, 56);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(70, 14);
     this.label6.TabIndex  = 65;
     this.label6.Text      = "身份编号:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(104, 16);
     this.m_txtName.MaxLength = 20;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(120, 23);
     this.m_txtName.TabIndex  = 0;
     this.m_txtName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtName_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(280, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(91, 14);
     this.label2.TabIndex  = 30;
     this.label2.Text      = "公 费 上 限:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_txtPayMilite
     //
     this.m_txtPayMilite.CausesValidation       = false;
     this.m_txtPayMilite.EnableAutoValidation   = true;
     this.m_txtPayMilite.EnableEnterKeyValidate = true;
     this.m_txtPayMilite.EnableEscapeKeyUndo    = true;
     this.m_txtPayMilite.EnableLastValidValue   = true;
     this.m_txtPayMilite.ErrorProvider          = null;
     this.m_txtPayMilite.ErrorProviderMessage   = "Invalid value";
     this.m_txtPayMilite.ForceFormatText        = true;
     this.m_txtPayMilite.Location         = new System.Drawing.Point(392, 56);
     this.m_txtPayMilite.MaxLength        = 8;
     this.m_txtPayMilite.Name             = "m_txtPayMilite";
     this.m_txtPayMilite.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator;
     this.m_txtPayMilite.Size             = new System.Drawing.Size(120, 23);
     this.m_txtPayMilite.TabIndex         = 4;
     this.m_txtPayMilite.Text             = "0";
     this.m_txtPayMilite.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtPayMilite.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtPayMilite_KeyDown);
     //
     // m_cboCOPAYID_CHR
     //
     this.m_cboCOPAYID_CHR.Cursor        = System.Windows.Forms.Cursors.Hand;
     this.m_cboCOPAYID_CHR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboCOPAYID_CHR.Location      = new System.Drawing.Point(728, 70);
     this.m_cboCOPAYID_CHR.Name          = "m_cboCOPAYID_CHR";
     this.m_cboCOPAYID_CHR.Size          = new System.Drawing.Size(121, 22);
     this.m_cboCOPAYID_CHR.TabIndex      = 8;
     this.m_cboCOPAYID_CHR.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.m_cboCOPAYID_CHR_KeyDown);
     //
     // m_cobType
     //
     this.m_cobType.Cursor        = System.Windows.Forms.Cursors.Hand;
     this.m_cobType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cobType.Items.AddRange(new object[] {
         "普通",
         "公费",
         "医保",
         "特困",
         "离休",
         "本院"
     });
     this.m_cobType.Location = new System.Drawing.Point(104, 96);
     this.m_cobType.Name     = "m_cobType";
     this.m_cobType.Size     = new System.Drawing.Size(120, 22);
     this.m_cobType.TabIndex = 2;
     this.m_cobType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_cobType_KeyDown);
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Location  = new System.Drawing.Point(16, 96);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(70, 14);
     this.label9.TabIndex  = 69;
     this.label9.Text      = "身份标识:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_txtCHARGEPERCENT_DEC
     //
     this.m_txtCHARGEPERCENT_DEC.CausesValidation       = false;
     this.m_txtCHARGEPERCENT_DEC.EnableAutoValidation   = true;
     this.m_txtCHARGEPERCENT_DEC.EnableEnterKeyValidate = true;
     this.m_txtCHARGEPERCENT_DEC.EnableEscapeKeyUndo    = true;
     this.m_txtCHARGEPERCENT_DEC.EnableLastValidValue   = true;
     this.m_txtCHARGEPERCENT_DEC.ErrorProvider          = null;
     this.m_txtCHARGEPERCENT_DEC.ErrorProviderMessage   = "Invalid value";
     this.m_txtCHARGEPERCENT_DEC.ForceFormatText        = true;
     this.m_txtCHARGEPERCENT_DEC.Location         = new System.Drawing.Point(728, 41);
     this.m_txtCHARGEPERCENT_DEC.MaxLength        = 5;
     this.m_txtCHARGEPERCENT_DEC.Name             = "m_txtCHARGEPERCENT_DEC";
     this.m_txtCHARGEPERCENT_DEC.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator;
     this.m_txtCHARGEPERCENT_DEC.Size             = new System.Drawing.Size(120, 23);
     this.m_txtCHARGEPERCENT_DEC.TabIndex         = 7;
     this.m_txtCHARGEPERCENT_DEC.Text             = "0";
     this.m_txtCHARGEPERCENT_DEC.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtCHARGEPERCENT_DEC.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtCHARGEPERCENT_DEC_KeyDown);
     //
     // m_cboPAYFLAG_DEC
     //
     this.m_cboPAYFLAG_DEC.Cursor        = System.Windows.Forms.Cursors.Hand;
     this.m_cboPAYFLAG_DEC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboPAYFLAG_DEC.Items.AddRange(new object[] {
         "公共",
         "门诊 ",
         "住院"
     });
     this.m_cboPAYFLAG_DEC.Location = new System.Drawing.Point(392, 96);
     this.m_cboPAYFLAG_DEC.Name     = "m_cboPAYFLAG_DEC";
     this.m_cboPAYFLAG_DEC.Size     = new System.Drawing.Size(120, 22);
     this.m_cboPAYFLAG_DEC.TabIndex = 5;
     this.m_cboPAYFLAG_DEC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_cboPAYFLAG_DEC_KeyDown);
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Location  = new System.Drawing.Point(600, 45);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(98, 14);
     this.label7.TabIndex  = 62;
     this.label7.Text      = "收费自付比例:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(16, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(70, 14);
     this.label1.TabIndex  = 18;
     this.label1.Text      = "名    称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelMemo
     //
     this.labelMemo.AutoSize  = true;
     this.labelMemo.Location  = new System.Drawing.Point(280, 16);
     this.labelMemo.Name      = "labelMemo";
     this.labelMemo.Size      = new System.Drawing.Size(98, 14);
     this.labelMemo.TabIndex  = 18;
     this.labelMemo.Text      = "备        注:";
     this.labelMemo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(280, 96);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(91, 14);
     this.label4.TabIndex  = 30;
     this.label4.Text      = "收 费 类 型:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Location  = new System.Drawing.Point(600, 74);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(98, 14);
     this.label8.TabIndex  = 30;
     this.label8.Text      = "保  险 计 划:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_txtPAYPERCENT_DEC
     //
     this.m_txtPAYPERCENT_DEC.AcceptsTab             = true;
     this.m_txtPAYPERCENT_DEC.CausesValidation       = false;
     this.m_txtPAYPERCENT_DEC.EnableAutoValidation   = true;
     this.m_txtPAYPERCENT_DEC.EnableEnterKeyValidate = true;
     this.m_txtPAYPERCENT_DEC.EnableEscapeKeyUndo    = true;
     this.m_txtPAYPERCENT_DEC.EnableLastValidValue   = true;
     this.m_txtPAYPERCENT_DEC.ErrorProvider          = null;
     this.m_txtPAYPERCENT_DEC.ErrorProviderMessage   = "Invalid value";
     this.m_txtPAYPERCENT_DEC.ForceFormatText        = true;
     this.m_txtPAYPERCENT_DEC.Location         = new System.Drawing.Point(728, 12);
     this.m_txtPAYPERCENT_DEC.MaxLength        = 5;
     this.m_txtPAYPERCENT_DEC.Name             = "m_txtPAYPERCENT_DEC";
     this.m_txtPAYPERCENT_DEC.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator;
     this.m_txtPAYPERCENT_DEC.Size             = new System.Drawing.Size(120, 23);
     this.m_txtPAYPERCENT_DEC.TabIndex         = 6;
     this.m_txtPAYPERCENT_DEC.Text             = "0";
     this.m_txtPAYPERCENT_DEC.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtPAYPERCENT_DEC.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtPAYPERCENT_DEC_KeyDown);
     //
     // m_txtMemo
     //
     this.m_txtMemo.EnableAutoValidation   = true;
     this.m_txtMemo.EnableEnterKeyValidate = true;
     this.m_txtMemo.EnableEscapeKeyUndo    = true;
     this.m_txtMemo.EnableLastValidValue   = true;
     this.m_txtMemo.ErrorProvider          = null;
     this.m_txtMemo.ErrorProviderMessage   = "Invalid value";
     this.m_txtMemo.ForceFormatText        = true;
     this.m_txtMemo.Location  = new System.Drawing.Point(392, 16);
     this.m_txtMemo.MaxLength = 100;
     this.m_txtMemo.Name      = "m_txtMemo";
     this.m_txtMemo.Size      = new System.Drawing.Size(120, 23);
     this.m_txtMemo.TabIndex  = 3;
     this.m_txtMemo.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtMemo_KeyDown);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(600, 16);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(98, 14);
     this.label5.TabIndex  = 62;
     this.label5.Text      = "挂号自付比例:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_txtPAYTYPENO_VCHR
     //
     this.m_txtPAYTYPENO_VCHR.EnableAutoValidation   = true;
     this.m_txtPAYTYPENO_VCHR.EnableEnterKeyValidate = true;
     this.m_txtPAYTYPENO_VCHR.EnableEscapeKeyUndo    = true;
     this.m_txtPAYTYPENO_VCHR.EnableLastValidValue   = true;
     this.m_txtPAYTYPENO_VCHR.ErrorProvider          = null;
     this.m_txtPAYTYPENO_VCHR.ErrorProviderMessage   = "Invalid value";
     this.m_txtPAYTYPENO_VCHR.ForceFormatText        = true;
     this.m_txtPAYTYPENO_VCHR.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_txtPAYTYPENO_VCHR.Location  = new System.Drawing.Point(104, 56);
     this.m_txtPAYTYPENO_VCHR.MaxLength = 4;
     this.m_txtPAYTYPENO_VCHR.Name      = "m_txtPAYTYPENO_VCHR";
     this.m_txtPAYTYPENO_VCHR.Size      = new System.Drawing.Size(120, 23);
     this.m_txtPAYTYPENO_VCHR.TabIndex  = 1;
     this.m_txtPAYTYPENO_VCHR.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtPAYTYPENO_VCHR_KeyDown);
     //
     // m_lblIsStopUse
     //
     this.m_lblIsStopUse.BackColor = System.Drawing.SystemColors.Control;
     this.m_lblIsStopUse.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.m_lblIsStopUse.ForeColor = System.Drawing.Color.Coral;
     this.m_lblIsStopUse.Location  = new System.Drawing.Point(40, 304);
     this.m_lblIsStopUse.Name      = "m_lblIsStopUse";
     this.m_lblIsStopUse.Size      = new System.Drawing.Size(72, 24);
     this.m_lblIsStopUse.TabIndex  = 67;
     this.m_lblIsStopUse.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // m_btnStopUse
     //
     this.m_btnStopUse.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnStopUse.DefaultScheme = true;
     this.m_btnStopUse.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnStopUse.Hint          = "";
     this.m_btnStopUse.Location      = new System.Drawing.Point(568, 472);
     this.m_btnStopUse.Name          = "m_btnStopUse";
     this.m_btnStopUse.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnStopUse.Size          = new System.Drawing.Size(96, 32);
     this.m_btnStopUse.TabIndex      = 66;
     this.m_btnStopUse.Text          = "停用";
     this.m_btnStopUse.Click        += new System.EventHandler(this.m_btnStopUse_Click);
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(672, 472);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(96, 32);
     this.m_btnDel.TabIndex      = 20;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click);
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(776, 472);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(96, 32);
     this.m_btnExit.TabIndex      = 19;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(464, 472);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(96, 32);
     this.m_btnSave.TabIndex      = 16;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(360, 472);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(96, 32);
     this.m_btnNew.TabIndex      = 10;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(8, 304);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(35, 14);
     this.label3.TabIndex  = 18;
     this.label3.Text      = "状态";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader9,
         this.columnHeader10,
         this.columnHeader11,
         this.columnHeader12,
         this.columnHeader13
     });
     this.m_lvw.Dock          = System.Windows.Forms.DockStyle.Top;
     this.m_lvw.FullRowSelect = true;
     this.m_lvw.GridLines     = true;
     this.m_lvw.HideSelection = false;
     this.m_lvw.Location      = new System.Drawing.Point(0, 0);
     this.m_lvw.MultiSelect   = false;
     this.m_lvw.Name          = "m_lvw";
     this.m_lvw.Size          = new System.Drawing.Size(882, 304);
     this.m_lvw.TabIndex      = 14;
     this.m_lvw.UseCompatibleStateImageBehavior = false;
     this.m_lvw.View = System.Windows.Forms.View.Details;
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "columnHeader1";
     this.columnHeader1.Width = 0;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "身份编号";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 87;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "身份名称";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 120;
     //
     // columnHeader4
     //
     this.columnHeader4.Text      = "备注";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width     = 95;
     //
     // columnHeader5
     //
     this.columnHeader5.Text      = "公费上限";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader5.Width     = 96;
     //
     // columnHeader6
     //
     this.columnHeader6.Text      = "收费类型";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader6.Width     = 85;
     //
     // columnHeader7
     //
     this.columnHeader7.Text      = "挂号自付比例";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader7.Width     = 122;
     //
     // columnHeader8
     //
     this.columnHeader8.Text      = "状态";
     this.columnHeader8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader8.Width     = 0;
     //
     // columnHeader9
     //
     this.columnHeader9.Text      = "收费自付比例";
     this.columnHeader9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader9.Width     = 107;
     //
     // columnHeader10
     //
     this.columnHeader10.Text  = "保险计划";
     this.columnHeader10.Width = 109;
     //
     // columnHeader11
     //
     this.columnHeader11.Text  = "类型身份";
     this.columnHeader11.Width = 80;
     //
     // columnHeader12
     //
     this.columnHeader12.Width = 0;
     //
     // columnHeader13
     //
     this.columnHeader13.Text  = "住院费下限";
     this.columnHeader13.Width = 100;
     //
     // frmPatientPayType
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(882, 511);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.m_lblIsStopUse);
     this.Controls.Add(this.m_btnStopUse);
     this.Controls.Add(this.m_btnDel);
     this.Controls.Add(this.m_btnExit);
     this.Controls.Add(this.m_btnSave);
     this.Controls.Add(this.m_btnNew);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.m_lvw);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmPatientPayType";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "挂号身份";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmPatientPayType_KeyDown);
     this.Load           += new System.EventHandler(this.frmPatientPayType_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #11
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_lvw         = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.label1        = new System.Windows.Forms.Label();
     this.m_btnNew      = new PinkieControls.ButtonXP();
     this.m_btnSave     = new PinkieControls.ButtonXP();
     this.m_btnExit     = new PinkieControls.ButtonXP();
     this.m_txtName     = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_btnDel      = new PinkieControls.ButtonXP();
     this.label2        = new System.Windows.Forms.Label();
     this.panel1        = new System.Windows.Forms.Panel();
     this.m_txtID       = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3
     });
     this.m_lvw.FullRowSelect         = true;
     this.m_lvw.GridLines             = true;
     this.m_lvw.HideSelection         = false;
     this.m_lvw.Location              = new System.Drawing.Point(8, 8);
     this.m_lvw.MultiSelect           = false;
     this.m_lvw.Name                  = "m_lvw";
     this.m_lvw.Size                  = new System.Drawing.Size(216, 320);
     this.m_lvw.TabIndex              = 5;
     this.m_lvw.View                  = System.Windows.Forms.View.Details;
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "ID";
     this.columnHeader1.Width = 0;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "ID";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 98;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "类别名称";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 113;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(40, 58);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(41, 19);
     this.label1.TabIndex  = 8;
     this.label1.Text      = "名称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(88, 104);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(96, 32);
     this.m_btnNew.TabIndex      = 2;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(88, 144);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(96, 32);
     this.m_btnSave.TabIndex      = 3;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(88, 224);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(96, 32);
     this.m_btnExit.TabIndex      = 6;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(88, 56);
     this.m_txtName.MaxLength = 10;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(112, 23);
     this.m_txtName.TabIndex  = 1;
     this.m_txtName.Text      = "";
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(88, 184);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(96, 32);
     this.m_btnDel.TabIndex      = 4;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(56, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(27, 19);
     this.label2.TabIndex  = 7;
     this.label2.Text      = "ID:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.m_txtID);
     this.panel1.Controls.Add(this.m_btnExit);
     this.panel1.Controls.Add(this.m_btnDel);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.m_btnSave);
     this.panel1.Controls.Add(this.m_btnNew);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.m_txtName);
     this.panel1.Location = new System.Drawing.Point(256, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(240, 320);
     this.panel1.TabIndex = 8;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // m_txtID
     //
     this.m_txtID.EnableAutoValidation   = true;
     this.m_txtID.EnableEnterKeyValidate = true;
     this.m_txtID.EnableEscapeKeyUndo    = true;
     this.m_txtID.EnableLastValidValue   = true;
     this.m_txtID.ErrorProvider          = null;
     this.m_txtID.ErrorProviderMessage   = "Invalid value";
     this.m_txtID.ForceFormatText        = true;
     this.m_txtID.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_txtID.Location  = new System.Drawing.Point(88, 16);
     this.m_txtID.MaxLength = 4;
     this.m_txtID.Name      = "m_txtID";
     this.m_txtID.Size      = new System.Drawing.Size(112, 23);
     this.m_txtID.TabIndex  = 34;
     this.m_txtID.Text      = "";
     //
     // frmChargeCat
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(514, 343);
     this.Controls.Add(this.m_lvw);
     this.Controls.Add(this.panel1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmChargeCat";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "收费项目类型";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmChargeCat_KeyDown);
     this.Load           += new System.EventHandler(this.frmChargeCat_Load);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #12
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRecipeFreq));
     this.m_btnExit         = new PinkieControls.ButtonXP();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this.m_txtUSERCODE_CHR = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.tex_DAYS_INT      = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_txtTIMES_INT    = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_btnDel          = new PinkieControls.ButtonXP();
     this.m_txtName         = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_btnNew          = new PinkieControls.ButtonXP();
     this.m_btnSave         = new PinkieControls.ButtonXP();
     this.label3            = new System.Windows.Forms.Label();
     this.labelMemo         = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.labelFreqName     = new System.Windows.Forms.Label();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.m_lvw             = new System.Windows.Forms.ListView();
     this.columnHeader1     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7     = new System.Windows.Forms.ColumnHeader();
     this.m_txtDesc         = new System.Windows.Forms.TextBox();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(86, 362);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(112, 32);
     this.m_btnExit.TabIndex      = 27;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.m_txtDesc);
     this.groupBox2.Controls.Add(this.m_txtUSERCODE_CHR);
     this.groupBox2.Controls.Add(this.tex_DAYS_INT);
     this.groupBox2.Controls.Add(this.m_txtTIMES_INT);
     this.groupBox2.Controls.Add(this.m_btnDel);
     this.groupBox2.Controls.Add(this.m_txtName);
     this.groupBox2.Controls.Add(this.m_btnNew);
     this.groupBox2.Controls.Add(this.m_btnExit);
     this.groupBox2.Controls.Add(this.m_btnSave);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.labelMemo);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.labelFreqName);
     this.groupBox2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.ForeColor = System.Drawing.Color.Black;
     this.groupBox2.Location  = new System.Drawing.Point(640, 0);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(253, 408);
     this.groupBox2.TabIndex  = 30;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "编辑区域:";
     //
     // m_txtUSERCODE_CHR
     //
     this.m_txtUSERCODE_CHR.EnableAutoValidation   = true;
     this.m_txtUSERCODE_CHR.EnableEnterKeyValidate = true;
     this.m_txtUSERCODE_CHR.EnableEscapeKeyUndo    = true;
     this.m_txtUSERCODE_CHR.EnableLastValidValue   = true;
     this.m_txtUSERCODE_CHR.ErrorProvider          = null;
     this.m_txtUSERCODE_CHR.ErrorProviderMessage   = "Invalid value";
     this.m_txtUSERCODE_CHR.ForceFormatText        = true;
     this.m_txtUSERCODE_CHR.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_txtUSERCODE_CHR.Location  = new System.Drawing.Point(107, 63);
     this.m_txtUSERCODE_CHR.MaxLength = 2;
     this.m_txtUSERCODE_CHR.Name      = "m_txtUSERCODE_CHR";
     this.m_txtUSERCODE_CHR.Size      = new System.Drawing.Size(117, 23);
     this.m_txtUSERCODE_CHR.TabIndex  = 1;
     this.m_txtUSERCODE_CHR.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtUSERCODE_CHR_KeyDown);
     //
     // tex_DAYS_INT
     //
     this.tex_DAYS_INT.EnableAutoValidation   = false;
     this.tex_DAYS_INT.EnableEnterKeyValidate = false;
     this.tex_DAYS_INT.EnableEscapeKeyUndo    = true;
     this.tex_DAYS_INT.EnableLastValidValue   = true;
     this.tex_DAYS_INT.ErrorProvider          = null;
     this.tex_DAYS_INT.ErrorProviderMessage   = "Invalid value";
     this.tex_DAYS_INT.ForceFormatText        = true;
     this.tex_DAYS_INT.Location         = new System.Drawing.Point(105, 137);
     this.tex_DAYS_INT.MaxLength        = 1;
     this.tex_DAYS_INT.Name             = "tex_DAYS_INT";
     this.tex_DAYS_INT.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol;
     this.tex_DAYS_INT.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.tex_DAYS_INT.Size             = new System.Drawing.Size(119, 23);
     this.tex_DAYS_INT.TabIndex         = 3;
     this.tex_DAYS_INT.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.tex_DAYS_INT.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.tex_DAYS_INT_KeyDown);
     //
     // m_txtTIMES_INT
     //
     this.m_txtTIMES_INT.EnableAutoValidation   = false;
     this.m_txtTIMES_INT.EnableEnterKeyValidate = false;
     this.m_txtTIMES_INT.EnableEscapeKeyUndo    = true;
     this.m_txtTIMES_INT.EnableLastValidValue   = true;
     this.m_txtTIMES_INT.ErrorProvider          = null;
     this.m_txtTIMES_INT.ErrorProviderMessage   = "Invalid value";
     this.m_txtTIMES_INT.ForceFormatText        = true;
     this.m_txtTIMES_INT.ImeMode          = System.Windows.Forms.ImeMode.Off;
     this.m_txtTIMES_INT.Location         = new System.Drawing.Point(106, 100);
     this.m_txtTIMES_INT.MaxLength        = 1;
     this.m_txtTIMES_INT.Name             = "m_txtTIMES_INT";
     this.m_txtTIMES_INT.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol;
     this.m_txtTIMES_INT.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.m_txtTIMES_INT.Size             = new System.Drawing.Size(118, 23);
     this.m_txtTIMES_INT.TabIndex         = 2;
     this.m_txtTIMES_INT.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtTIMES_INT.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtTIMES_INT_KeyDown);
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(86, 321);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(112, 32);
     this.m_btnDel.TabIndex      = 28;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click);
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(107, 27);
     this.m_txtName.MaxLength = 10;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(117, 23);
     this.m_txtName.TabIndex  = 0;
     this.m_txtName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtName_KeyDown);
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnNew.Cursor        = System.Windows.Forms.Cursors.Hand;
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(86, 240);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(112, 32);
     this.m_btnNew.TabIndex      = 6;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(86, 281);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(112, 32);
     this.m_btnSave.TabIndex      = 5;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.label3.Location  = new System.Drawing.Point(27, 181);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(83, 14);
     this.label3.TabIndex  = 30;
     this.label3.Text      = "描   述:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelMemo
     //
     this.labelMemo.AutoSize  = true;
     this.labelMemo.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelMemo.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.labelMemo.Location  = new System.Drawing.Point(27, 108);
     this.labelMemo.Name      = "labelMemo";
     this.labelMemo.Size      = new System.Drawing.Size(76, 14);
     this.labelMemo.TabIndex  = 25;
     this.labelMemo.Text      = "次   数:";
     this.labelMemo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.label2.Location  = new System.Drawing.Point(27, 143);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(76, 14);
     this.label2.TabIndex  = 25;
     this.label2.Text      = "天   数:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.label1.Location  = new System.Drawing.Point(27, 71);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(83, 14);
     this.label1.TabIndex  = 25;
     this.label1.Text      = "助 记 码:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelFreqName
     //
     this.labelFreqName.AutoSize  = true;
     this.labelFreqName.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelFreqName.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.labelFreqName.Location  = new System.Drawing.Point(27, 33);
     this.labelFreqName.Name      = "labelFreqName";
     this.labelFreqName.Size      = new System.Drawing.Size(83, 14);
     this.labelFreqName.TabIndex  = 26;
     this.labelFreqName.Text      = "名   称:";
     this.labelFreqName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_lvw);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(640, 408);
     this.groupBox1.TabIndex = 29;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "频率信息:";
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader7
     });
     this.m_lvw.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lvw.FullRowSelect = true;
     this.m_lvw.GridLines     = true;
     this.m_lvw.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.m_lvw.HideSelection = false;
     this.m_lvw.Location      = new System.Drawing.Point(3, 19);
     this.m_lvw.MultiSelect   = false;
     this.m_lvw.Name          = "m_lvw";
     this.m_lvw.Size          = new System.Drawing.Size(634, 386);
     this.m_lvw.TabIndex      = 15;
     this.m_lvw.UseCompatibleStateImageBehavior = false;
     this.m_lvw.View = System.Windows.Forms.View.Details;
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     this.m_lvw.Click += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "columnHeader1";
     this.columnHeader1.Width = 0;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "频率编号";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 110;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "频率名称";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 110;
     //
     // columnHeader4
     //
     this.columnHeader4.Text      = "助记码";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width     = 110;
     //
     // columnHeader5
     //
     this.columnHeader5.Text      = "次数";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // columnHeader6
     //
     this.columnHeader6.Text      = "天数";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // columnHeader7
     //
     this.columnHeader7.Text      = "描述";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader7.Width     = 180;
     //
     // m_txtDesc
     //
     this.m_txtDesc.Location  = new System.Drawing.Point(104, 176);
     this.m_txtDesc.Multiline = true;
     this.m_txtDesc.Name      = "m_txtDesc";
     this.m_txtDesc.Size      = new System.Drawing.Size(120, 56);
     this.m_txtDesc.TabIndex  = 4;
     this.m_txtDesc.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtDesc_KeyDown);
     //
     // frmRecipeFreq
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(893, 408);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmRecipeFreq";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "用药频率维护界面";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmRecipeFreq_KeyDown);
     this.Load           += new System.EventHandler(this.frmRecipeFreq_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #13
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.cryReportViewer = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.m_btnQulReg     = new PinkieControls.ButtonXP();
     this.m_daFinDate     = new System.Windows.Forms.DateTimePicker();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.label1          = new System.Windows.Forms.Label();
     this.m_daFinDateLast = new System.Windows.Forms.DateTimePicker();
     this.label2          = new System.Windows.Forms.Label();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.m_txtDepID      = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_chbPatienName = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // cryReportViewer
     //
     this.cryReportViewer.ActiveViewIndex = -1;
     this.cryReportViewer.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.cryReportViewer.DisplayGroupTree   = false;
     this.cryReportViewer.DockPadding.Bottom = 5;
     this.cryReportViewer.Location           = new System.Drawing.Point(8, 32);
     this.cryReportViewer.Name         = "cryReportViewer";
     this.cryReportViewer.ReportSource = null;
     this.cryReportViewer.Size         = new System.Drawing.Size(816, 408);
     this.cryReportViewer.TabIndex     = 59;
     //
     // m_btnQulReg
     //
     this.m_btnQulReg.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnQulReg.DefaultScheme = true;
     this.m_btnQulReg.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnQulReg.Hint          = "";
     this.m_btnQulReg.Location      = new System.Drawing.Point(728, 24);
     this.m_btnQulReg.Name          = "m_btnQulReg";
     this.m_btnQulReg.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnQulReg.Size          = new System.Drawing.Size(64, 24);
     this.m_btnQulReg.TabIndex      = 58;
     this.m_btnQulReg.Text          = "确定";
     this.m_btnQulReg.Click        += new System.EventHandler(this.m_btnQulReg_Click);
     //
     // m_daFinDate
     //
     this.m_daFinDate.Location = new System.Drawing.Point(368, 24);
     this.m_daFinDate.Name     = "m_daFinDate";
     this.m_daFinDate.Size     = new System.Drawing.Size(128, 23);
     this.m_daFinDate.TabIndex = 60;
     //
     // 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.m_txtDepID);
     this.groupBox1.Controls.Add(this.m_chbPatienName);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.m_daFinDateLast);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_btnQulReg);
     this.groupBox1.Controls.Add(this.m_daFinDate);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(832, 56);
     this.groupBox1.TabIndex = 61;
     this.groupBox1.TabStop  = false;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(520, 28);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(20, 19);
     this.label1.TabIndex  = 65;
     this.label1.Text      = "至";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // m_daFinDateLast
     //
     this.m_daFinDateLast.Location = new System.Drawing.Point(560, 24);
     this.m_daFinDateLast.Name     = "m_daFinDateLast";
     this.m_daFinDateLast.Size     = new System.Drawing.Size(128, 23);
     this.m_daFinDateLast.TabIndex = 64;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(288, 28);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(70, 19);
     this.label2.TabIndex  = 63;
     this.label2.Text      = "统计日期:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // 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.cryReportViewer);
     this.groupBox2.Location = new System.Drawing.Point(8, 64);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(832, 448);
     this.groupBox2.TabIndex = 62;
     this.groupBox2.TabStop  = false;
     //
     // m_txtDepID
     //
     this.m_txtDepID.EnableAutoValidation   = true;
     this.m_txtDepID.EnableEnterKeyValidate = true;
     this.m_txtDepID.EnableEscapeKeyUndo    = true;
     this.m_txtDepID.EnableLastValidValue   = true;
     this.m_txtDepID.ErrorProvider          = null;
     this.m_txtDepID.ErrorProviderMessage   = "Invalid value";
     this.m_txtDepID.ForceFormatText        = true;
     this.m_txtDepID.Location  = new System.Drawing.Point(112, 24);
     this.m_txtDepID.MaxLength = 20;
     this.m_txtDepID.Name      = "m_txtDepID";
     this.m_txtDepID.Size      = new System.Drawing.Size(104, 23);
     this.m_txtDepID.TabIndex  = 69;
     this.m_txtDepID.Text      = "";
     //
     // m_chbPatienName
     //
     this.m_chbPatienName.Location  = new System.Drawing.Point(16, 24);
     this.m_chbPatienName.Name      = "m_chbPatienName";
     this.m_chbPatienName.Size      = new System.Drawing.Size(96, 24);
     this.m_chbPatienName.TabIndex  = 68;
     this.m_chbPatienName.Text      = "科室编号:";
     this.m_chbPatienName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // frmDepWorkReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(848, 517);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name = "frmDepWorkReport";
     this.Text = "门诊科室工作量报表";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #14
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_lvw                    = new System.Windows.Forms.ListView();
     this.columnHeader1            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6            = new System.Windows.Forms.ColumnHeader();
     this.m_txtName                = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_btnExit                = new PinkieControls.ButtonXP();
     this.m_btnSave                = new PinkieControls.ButtonXP();
     this.m_btnNew                 = new PinkieControls.ButtonXP();
     this.label1                   = new System.Windows.Forms.Label();
     this.m_btnDel                 = new PinkieControls.ButtonXP();
     this.m_txtMemo                = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.labelMemo                = new System.Windows.Forms.Label();
     this.m_btnStopUse             = new PinkieControls.ButtonXP();
     this.m_lblIsStopUse           = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.m_txtREGISTERTYPENO_VCHR = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label3                   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6
     });
     this.m_lvw.Dock          = System.Windows.Forms.DockStyle.Left;
     this.m_lvw.FullRowSelect = true;
     this.m_lvw.GridLines     = true;
     this.m_lvw.HideSelection = false;
     this.m_lvw.Location      = new System.Drawing.Point(0, 0);
     this.m_lvw.MultiSelect   = false;
     this.m_lvw.Name          = "m_lvw";
     this.m_lvw.Size          = new System.Drawing.Size(424, 439);
     this.m_lvw.TabIndex      = 6;
     this.m_lvw.UseCompatibleStateImageBehavior = false;
     this.m_lvw.View = System.Windows.Forms.View.Details;
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     this.m_lvw.Click += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "";
     this.columnHeader1.Width = 0;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "费种ID";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 110;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "费种名称";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 110;
     //
     // columnHeader4
     //
     this.columnHeader4.Text      = "备注";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width     = 110;
     //
     // columnHeader5
     //
     this.columnHeader5.Text      = "费种编号";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader5.Width     = 89;
     //
     // columnHeader6
     //
     this.columnHeader6.Text      = "状态";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader6.Width     = 0;
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(552, 40);
     this.m_txtName.MaxLength = 20;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(128, 23);
     this.m_txtName.TabIndex  = 0;
     this.m_txtName.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtName_KeyDown);
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(552, 352);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(128, 32);
     this.m_btnExit.TabIndex      = 12;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(552, 232);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(128, 32);
     this.m_btnSave.TabIndex      = 8;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(552, 192);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(128, 32);
     this.m_btnNew.TabIndex      = 3;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(504, 40);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(42, 14);
     this.label1.TabIndex  = 10;
     this.label1.Text      = "名称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(552, 312);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(128, 32);
     this.m_btnDel.TabIndex      = 13;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click_1);
     //
     // m_txtMemo
     //
     this.m_txtMemo.EnableAutoValidation   = true;
     this.m_txtMemo.EnableEnterKeyValidate = true;
     this.m_txtMemo.EnableEscapeKeyUndo    = true;
     this.m_txtMemo.EnableLastValidValue   = true;
     this.m_txtMemo.ErrorProvider          = null;
     this.m_txtMemo.ErrorProviderMessage   = "Invalid value";
     this.m_txtMemo.ForceFormatText        = true;
     this.m_txtMemo.Location  = new System.Drawing.Point(552, 80);
     this.m_txtMemo.MaxLength = 20;
     this.m_txtMemo.Name      = "m_txtMemo";
     this.m_txtMemo.Size      = new System.Drawing.Size(128, 23);
     this.m_txtMemo.TabIndex  = 1;
     this.m_txtMemo.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtMemo_KeyDown);
     //
     // labelMemo
     //
     this.labelMemo.AutoSize  = true;
     this.labelMemo.Location  = new System.Drawing.Point(504, 80);
     this.labelMemo.Name      = "labelMemo";
     this.labelMemo.Size      = new System.Drawing.Size(42, 14);
     this.labelMemo.TabIndex  = 10;
     this.labelMemo.Text      = "备注:";
     this.labelMemo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_btnStopUse
     //
     this.m_btnStopUse.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnStopUse.DefaultScheme = true;
     this.m_btnStopUse.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnStopUse.Hint          = "";
     this.m_btnStopUse.Location      = new System.Drawing.Point(552, 274);
     this.m_btnStopUse.Name          = "m_btnStopUse";
     this.m_btnStopUse.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnStopUse.Size          = new System.Drawing.Size(128, 32);
     this.m_btnStopUse.TabIndex      = 16;
     this.m_btnStopUse.Text          = "停用";
     this.m_btnStopUse.Click        += new System.EventHandler(this.m_btnStopUse_Click);
     //
     // m_lblIsStopUse
     //
     this.m_lblIsStopUse.Location  = new System.Drawing.Point(560, 8);
     this.m_lblIsStopUse.Name      = "m_lblIsStopUse";
     this.m_lblIsStopUse.Size      = new System.Drawing.Size(112, 23);
     this.m_lblIsStopUse.TabIndex  = 17;
     this.m_lblIsStopUse.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(504, 128);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 19;
     this.label2.Text     = "编号:";
     //
     // m_txtREGISTERTYPENO_VCHR
     //
     this.m_txtREGISTERTYPENO_VCHR.EnableAutoValidation   = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableEnterKeyValidate = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableEscapeKeyUndo    = true;
     this.m_txtREGISTERTYPENO_VCHR.EnableLastValidValue   = true;
     this.m_txtREGISTERTYPENO_VCHR.ErrorProvider          = null;
     this.m_txtREGISTERTYPENO_VCHR.ErrorProviderMessage   = "Invalid value";
     this.m_txtREGISTERTYPENO_VCHR.ForceFormatText        = true;
     this.m_txtREGISTERTYPENO_VCHR.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_txtREGISTERTYPENO_VCHR.Location  = new System.Drawing.Point(552, 120);
     this.m_txtREGISTERTYPENO_VCHR.MaxLength = 3;
     this.m_txtREGISTERTYPENO_VCHR.Name      = "m_txtREGISTERTYPENO_VCHR";
     this.m_txtREGISTERTYPENO_VCHR.Size      = new System.Drawing.Size(128, 23);
     this.m_txtREGISTERTYPENO_VCHR.TabIndex  = 2;
     this.m_txtREGISTERTYPENO_VCHR.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_txtREGISTERTYPENO_VCHR_KeyDown);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(504, 8);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(42, 14);
     this.label3.TabIndex  = 20;
     this.label3.Text      = "状态:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmRegChargeType
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(738, 439);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.m_lblIsStopUse);
     this.Controls.Add(this.m_btnStopUse);
     this.Controls.Add(this.m_btnDel);
     this.Controls.Add(this.m_txtName);
     this.Controls.Add(this.m_btnExit);
     this.Controls.Add(this.m_btnSave);
     this.Controls.Add(this.m_btnNew);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.m_lvw);
     this.Controls.Add(this.m_txtMemo);
     this.Controls.Add(this.labelMemo);
     this.Controls.Add(this.m_txtREGISTERTYPENO_VCHR);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmRegChargeType";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "挂号费种";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmRegChargeType_KeyDown_1);
     this.Load           += new System.EventHandler(this.frmRegChargeType_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #15
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUsage));
     this.m_lvw            = new System.Windows.Forms.ListView();
     this.columnHeader6    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7    = new System.Windows.Forms.ColumnHeader();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.m_cboTest        = new System.Windows.Forms.ComboBox();
     this.label7           = new System.Windows.Forms.Label();
     this.m_cboPutMed_INT  = new System.Windows.Forms.ComboBox();
     this.label6           = new System.Windows.Forms.Label();
     this.m_txtPYCODE      = new System.Windows.Forms.TextBox();
     this.m_btnExit        = new PinkieControls.ButtonXP();
     this.label2           = new System.Windows.Forms.Label();
     this.m_btnDel         = new PinkieControls.ButtonXP();
     this.m_btnSave        = new PinkieControls.ButtonXP();
     this.m_txtCode        = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_btnNew         = new PinkieControls.ButtonXP();
     this.cboScope         = new System.Windows.Forms.ComboBox();
     this.label1           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.m_txtName        = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.label4           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.m_txtWBCODE      = new System.Windows.Forms.TextBox();
     this.label8           = new System.Windows.Forms.Label();
     this.m_txtOPUsageDesc = new System.Windows.Forms.TextBox();
     this.columnHeader8    = new System.Windows.Forms.ColumnHeader();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_lvw
     //
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader6,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader1,
         this.columnHeader7,
         this.columnHeader8
     });
     this.m_lvw.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lvw.FullRowSelect = true;
     this.m_lvw.GridLines     = true;
     this.m_lvw.HideSelection = false;
     this.m_lvw.Location      = new System.Drawing.Point(0, 0);
     this.m_lvw.MultiSelect   = false;
     this.m_lvw.Name          = "m_lvw";
     this.m_lvw.Size          = new System.Drawing.Size(726, 531);
     this.m_lvw.TabIndex      = 9;
     this.m_lvw.UseCompatibleStateImageBehavior = false;
     this.m_lvw.View = System.Windows.Forms.View.Details;
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged_1);
     this.m_lvw.Click += new System.EventHandler(this.m_lvw_SelectedIndexChanged_1);
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "类型范围";
     this.columnHeader6.Width = 74;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "助记码";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 74;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "用法名称";
     this.columnHeader3.Width = 118;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "拼音码";
     this.columnHeader4.Width = 81;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "五笔码";
     this.columnHeader5.Width = 94;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "用法类别";
     this.columnHeader1.Width = 80;
     //
     // columnHeader7
     //
     this.columnHeader7.Text  = "是否皮试";
     this.columnHeader7.Width = 80;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_txtOPUsageDesc);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.m_cboTest);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.m_cboPutMed_INT);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.m_txtPYCODE);
     this.groupBox1.Controls.Add(this.m_btnExit);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_btnDel);
     this.groupBox1.Controls.Add(this.m_btnSave);
     this.groupBox1.Controls.Add(this.m_txtCode);
     this.groupBox1.Controls.Add(this.m_btnNew);
     this.groupBox1.Controls.Add(this.cboScope);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.m_txtName);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.m_txtWBCODE);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.groupBox1.Location = new System.Drawing.Point(726, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(216, 531);
     this.groupBox1.TabIndex = 10;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Enter   += new System.EventHandler(this.groupBox1_Enter);
     //
     // m_cboTest
     //
     this.m_cboTest.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboTest.FormattingEnabled = true;
     this.m_cboTest.Items.AddRange(new object[] {
         "非皮试",
         "皮试"
     });
     this.m_cboTest.Location = new System.Drawing.Point(82, 286);
     this.m_cboTest.Name     = "m_cboTest";
     this.m_cboTest.Size     = new System.Drawing.Size(126, 22);
     this.m_cboTest.TabIndex = 6;
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Location  = new System.Drawing.Point(9, 291);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(70, 14);
     this.label7.TabIndex  = 18;
     this.label7.Text      = "是否皮试:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_cboPutMed_INT
     //
     this.m_cboPutMed_INT.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboPutMed_INT.FormattingEnabled = true;
     this.m_cboPutMed_INT.Items.AddRange(new object[] {
         "注射",
         "非注射"
     });
     this.m_cboPutMed_INT.Location = new System.Drawing.Point(82, 247);
     this.m_cboPutMed_INT.Name     = "m_cboPutMed_INT";
     this.m_cboPutMed_INT.Size     = new System.Drawing.Size(126, 22);
     this.m_cboPutMed_INT.TabIndex = 5;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(9, 252);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(70, 14);
     this.label6.TabIndex  = 16;
     this.label6.Text      = "用法类别:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtPYCODE
     //
     this.m_txtPYCODE.Location  = new System.Drawing.Point(82, 123);
     this.m_txtPYCODE.MaxLength = 20;
     this.m_txtPYCODE.Name      = "m_txtPYCODE";
     this.m_txtPYCODE.Size      = new System.Drawing.Size(126, 23);
     this.m_txtPYCODE.TabIndex  = 2;
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(60, 489);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(112, 32);
     this.m_btnExit.TabIndex      = 9;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(8, 43);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(70, 14);
     this.label2.TabIndex  = 8;
     this.label2.Text      = "助 记 码:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label2.Click    += new System.EventHandler(this.label2_Click);
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(60, 448);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(112, 32);
     this.m_btnDel.TabIndex      = 10;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click_1);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(60, 406);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(112, 32);
     this.m_btnSave.TabIndex      = 8;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_txtCode
     //
     this.m_txtCode.EnableAutoValidation   = false;
     this.m_txtCode.EnableEnterKeyValidate = false;
     this.m_txtCode.EnableEscapeKeyUndo    = true;
     this.m_txtCode.EnableLastValidValue   = true;
     this.m_txtCode.ErrorProvider          = null;
     this.m_txtCode.ErrorProviderMessage   = "Invalid value";
     this.m_txtCode.ForceFormatText        = true;
     this.m_txtCode.Location         = new System.Drawing.Point(82, 40);
     this.m_txtCode.MaxLength        = 3;
     this.m_txtCode.Name             = "m_txtCode";
     this.m_txtCode.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol;
     this.m_txtCode.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.m_txtCode.Size             = new System.Drawing.Size(126, 23);
     this.m_txtCode.TabIndex         = 0;
     this.m_txtCode.Text             = "0";
     this.m_txtCode.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtCode.Validating      += new System.ComponentModel.CancelEventHandler(this.m_txtCode_Validating);
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(60, 364);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(112, 32);
     this.m_btnNew.TabIndex      = 9;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // cboScope
     //
     this.cboScope.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboScope.FormattingEnabled = true;
     this.cboScope.Items.AddRange(new object[] {
         "公用类",
         "西药类",
         "中药类"
     });
     this.cboScope.Location              = new System.Drawing.Point(82, 208);
     this.cboScope.Name                  = "cboScope";
     this.cboScope.Size                  = new System.Drawing.Size(126, 22);
     this.cboScope.TabIndex              = 4;
     this.cboScope.SelectedIndexChanged += new System.EventHandler(this.cboScope_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(8, 88);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(70, 14);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "名    称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Click    += new System.EventHandler(this.label1_Click);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(9, 212);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(70, 14);
     this.label5.TabIndex  = 14;
     this.label5.Text      = "范  围:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label5.Click    += new System.EventHandler(this.label5_Click);
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = false;
     this.m_txtName.EnableEnterKeyValidate = false;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location  = new System.Drawing.Point(82, 81);
     this.m_txtName.MaxLength = 50;
     this.m_txtName.Name      = "m_txtName";
     this.m_txtName.Size      = new System.Drawing.Size(126, 23);
     this.m_txtName.TabIndex  = 1;
     this.m_txtName.Leave    += new System.EventHandler(this.m_txtName_Leave);
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(9, 169);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(70, 14);
     this.label4.TabIndex  = 13;
     this.label4.Text      = "五 笔 码:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(11, 128);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(70, 14);
     this.label3.TabIndex  = 11;
     this.label3.Text      = "拼 音 码:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtWBCODE
     //
     this.m_txtWBCODE.Location  = new System.Drawing.Point(82, 165);
     this.m_txtWBCODE.MaxLength = 20;
     this.m_txtWBCODE.Name      = "m_txtWBCODE";
     this.m_txtWBCODE.Size      = new System.Drawing.Size(126, 23);
     this.m_txtWBCODE.TabIndex  = 3;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Location  = new System.Drawing.Point(8, 329);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(70, 14);
     this.label8.TabIndex  = 19;
     this.label8.Text      = "用法描述:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtOPUsageDesc
     //
     this.m_txtOPUsageDesc.Location  = new System.Drawing.Point(82, 325);
     this.m_txtOPUsageDesc.MaxLength = 20;
     this.m_txtOPUsageDesc.Name      = "m_txtOPUsageDesc";
     this.m_txtOPUsageDesc.Size      = new System.Drawing.Size(126, 23);
     this.m_txtOPUsageDesc.TabIndex  = 7;
     //
     // columnHeader8
     //
     this.columnHeader8.Text  = "用法描述";
     this.columnHeader8.Width = 118;
     //
     // frmUsage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(942, 531);
     this.Controls.Add(this.m_lvw);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmUsage";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "项目用法维护";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmUsage_KeyDown);
     this.Load           += new System.EventHandler(this.frmChargeCat_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #16
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     com.digitalwave.controls.datagrid.clsColumnInfo clsColumnInfo1 = new com.digitalwave.controls.datagrid.clsColumnInfo();
     com.digitalwave.controls.datagrid.clsColumnInfo clsColumnInfo2 = new com.digitalwave.controls.datagrid.clsColumnInfo();
     this.label1           = new System.Windows.Forms.Label();
     this.m_cboMedStore    = new System.Windows.Forms.ComboBox();
     this.m_lsvDetail      = new System.Windows.Forms.ListView();
     this.clhMedID         = new System.Windows.Forms.ColumnHeader();
     this.clhMedName       = new System.Windows.Forms.ColumnHeader();
     this.clhUnit          = new System.Windows.Forms.ColumnHeader();
     this.clhLow           = new System.Windows.Forms.ColumnHeader();
     this.clhHight         = new System.Windows.Forms.ColumnHeader();
     this.clhPlanQty       = new System.Windows.Forms.ColumnHeader();
     this.clhPlanPercent   = new System.Windows.Forms.ColumnHeader();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.ctlDataGridMed   = new com.digitalwave.controls.datagrid.ctlDataGrid();
     this.label9           = new System.Windows.Forms.Label();
     this.m_txtmedName     = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtUnit        = new System.Windows.Forms.TextBox();
     this.label8           = new System.Windows.Forms.Label();
     this.m_numPlanPercent = new System.Windows.Forms.NumericUpDown();
     this.m_txtPlanQty     = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_txtHight       = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.m_txtLow         = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label7           = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.m_txtMedID       = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.m_cmdClose       = new PinkieControls.ButtonXP();
     this.m_cmdRefersh     = new PinkieControls.ButtonXP();
     this.m_cmdDelete      = new PinkieControls.ButtonXP();
     this.m_cmdNew         = new PinkieControls.ButtonXP();
     this.m_cmdSave        = new PinkieControls.ButtonXP();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ctlDataGridMed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_numPlanPercent)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(63, 19);
     this.label1.TabIndex = 0;
     this.label1.Text     = "选择药房";
     //
     // m_cboMedStore
     //
     this.m_cboMedStore.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboMedStore.Location              = new System.Drawing.Point(80, 8);
     this.m_cboMedStore.Name                  = "m_cboMedStore";
     this.m_cboMedStore.Size                  = new System.Drawing.Size(121, 22);
     this.m_cboMedStore.TabIndex              = 1;
     this.m_cboMedStore.SelectedIndexChanged += new System.EventHandler(this.m_cboMedStore_SelectedIndexChanged);
     //
     // m_lsvDetail
     //
     this.m_lsvDetail.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.m_lsvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.clhMedID,
         this.clhMedName,
         this.clhUnit,
         this.clhLow,
         this.clhHight,
         this.clhPlanQty,
         this.clhPlanPercent
     });
     this.m_lsvDetail.FullRowSelect = true;
     this.m_lsvDetail.GridLines     = true;
     this.m_lsvDetail.Location      = new System.Drawing.Point(272, 40);
     this.m_lsvDetail.Name          = "m_lsvDetail";
     this.m_lsvDetail.Size          = new System.Drawing.Size(654, 592);
     this.m_lsvDetail.TabIndex      = 2;
     this.m_lsvDetail.View          = System.Windows.Forms.View.Details;
     this.m_lsvDetail.Click        += new System.EventHandler(this.m_lsvDetail_Click);
     this.m_lsvDetail.DoubleClick  += new System.EventHandler(this.m_lsvDetail_DoubleClick);
     this.m_lsvDetail.Enter        += new System.EventHandler(this.m_lsvDetail_Enter);
     //
     // clhMedID
     //
     this.clhMedID.Text  = "药品编号";
     this.clhMedID.Width = 82;
     //
     // clhMedName
     //
     this.clhMedName.Text      = "药品名称";
     this.clhMedName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhMedName.Width     = 134;
     //
     // clhUnit
     //
     this.clhUnit.Text      = "单位";
     this.clhUnit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhUnit.Width     = 82;
     //
     // clhLow
     //
     this.clhLow.Text      = "下限";
     this.clhLow.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhLow.Width     = 80;
     //
     // clhHight
     //
     this.clhHight.Text      = "上限";
     this.clhHight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhHight.Width     = 82;
     //
     // clhPlanQty
     //
     this.clhPlanQty.Text      = "领药量";
     this.clhPlanQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhPlanQty.Width     = 87;
     //
     // clhPlanPercent
     //
     this.clhPlanPercent.Text      = "领药比例";
     this.clhPlanPercent.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.clhPlanPercent.Width     = 101;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ctlDataGridMed);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.m_txtmedName);
     this.groupBox1.Controls.Add(this.m_txtUnit);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.m_numPlanPercent);
     this.groupBox1.Controls.Add(this.m_txtPlanQty);
     this.groupBox1.Controls.Add(this.m_txtHight);
     this.groupBox1.Controls.Add(this.m_txtLow);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.m_txtMedID);
     this.groupBox1.Location = new System.Drawing.Point(0, 40);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(264, 320);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     //
     // ctlDataGridMed
     //
     this.ctlDataGridMed.AllowAddNew          = true;
     this.ctlDataGridMed.AllowDelete          = true;
     this.ctlDataGridMed.AutoAppendRow        = true;
     this.ctlDataGridMed.AutoScroll           = true;
     this.ctlDataGridMed.BackgroundColor      = System.Drawing.SystemColors.Window;
     this.ctlDataGridMed.CaptionText          = "";
     this.ctlDataGridMed.CaptionVisible       = false;
     this.ctlDataGridMed.ColumnHeadersVisible = true;
     clsColumnInfo1.Alignment   = System.Windows.Forms.HorizontalAlignment.Left;
     clsColumnInfo1.BackColor   = System.Drawing.Color.White;
     clsColumnInfo1.Column_Type = com.digitalwave.controls.datagrid.enum_DataType.System_String;
     clsColumnInfo1.ColumnIndex = 0;
     clsColumnInfo1.ColumnName  = "MEDICINENAME_VCHR";
     clsColumnInfo1.ColumnWidth = 110;
     clsColumnInfo1.Enabled     = false;
     clsColumnInfo1.ForeColor   = System.Drawing.Color.Black;
     clsColumnInfo1.HeadText    = "药品名称";
     clsColumnInfo1.ReadOnly    = true;
     clsColumnInfo1.TextFont    = new System.Drawing.Font("宋体", 10F);
     clsColumnInfo2.Alignment   = System.Windows.Forms.HorizontalAlignment.Left;
     clsColumnInfo2.BackColor   = System.Drawing.Color.White;
     clsColumnInfo2.Column_Type = com.digitalwave.controls.datagrid.enum_DataType.System_String;
     clsColumnInfo2.ColumnIndex = 1;
     clsColumnInfo2.ColumnName  = "OPUNIT_CHR";
     clsColumnInfo2.ColumnWidth = 40;
     clsColumnInfo2.Enabled     = false;
     clsColumnInfo2.ForeColor   = System.Drawing.Color.Black;
     clsColumnInfo2.HeadText    = "单位";
     clsColumnInfo2.ReadOnly    = true;
     clsColumnInfo2.TextFont    = new System.Drawing.Font("宋体", 10F);
     this.ctlDataGridMed.Columns.Add(clsColumnInfo1);
     this.ctlDataGridMed.Columns.Add(clsColumnInfo2);
     this.ctlDataGridMed.FullRowSelect         = true;
     this.ctlDataGridMed.Location              = new System.Drawing.Point(80, -216);
     this.ctlDataGridMed.MultiSelect           = false;
     this.ctlDataGridMed.Name                  = "ctlDataGridMed";
     this.ctlDataGridMed.ReadOnly              = false;
     this.ctlDataGridMed.RowHeadersVisible     = false;
     this.ctlDataGridMed.RowHeaderWidth        = 35;
     this.ctlDataGridMed.SelectedRowBackColor  = System.Drawing.Color.Purple;
     this.ctlDataGridMed.SelectedRowForeColor  = System.Drawing.Color.White;
     this.ctlDataGridMed.Size                  = new System.Drawing.Size(176, 224);
     this.ctlDataGridMed.TabIndex              = 5;
     this.ctlDataGridMed.Visible               = false;
     this.ctlDataGridMed.m_evtDoubleClickCell += new com.digitalwave.controls.datagrid.clsDGTextMouseClickEventHandler(this.ctlDataGridMed_m_evtDoubleClickCell);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(40, 64);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(34, 19);
     this.label9.TabIndex = 15;
     this.label9.Text     = "药品";
     //
     // m_txtmedName
     //
     this.m_txtmedName.EnableAutoValidation   = false;
     this.m_txtmedName.EnableEnterKeyValidate = true;
     this.m_txtmedName.EnableEscapeKeyUndo    = true;
     this.m_txtmedName.EnableLastValidValue   = true;
     this.m_txtmedName.ErrorProvider          = null;
     this.m_txtmedName.ErrorProviderMessage   = "Invalid value";
     this.m_txtmedName.ForceFormatText        = true;
     this.m_txtmedName.Location = new System.Drawing.Point(80, 64);
     this.m_txtmedName.Name     = "m_txtmedName";
     this.m_txtmedName.Size     = new System.Drawing.Size(121, 23);
     this.m_txtmedName.TabIndex = 14;
     this.m_txtmedName.Text     = "";
     //
     // m_txtUnit
     //
     this.m_txtUnit.Enabled      = false;
     this.m_txtUnit.Location     = new System.Drawing.Point(80, 108);
     this.m_txtUnit.Name         = "m_txtUnit";
     this.m_txtUnit.Size         = new System.Drawing.Size(121, 23);
     this.m_txtUnit.TabIndex     = 13;
     this.m_txtUnit.Text         = "";
     this.m_txtUnit.TextChanged += new System.EventHandler(this.txtUnit_TextChanged);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location = new System.Drawing.Point(184, 288);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(13, 19);
     this.label8.TabIndex = 12;
     this.label8.Text     = "%";
     //
     // m_numPlanPercent
     //
     this.m_numPlanPercent.Location  = new System.Drawing.Point(80, 280);
     this.m_numPlanPercent.Name      = "m_numPlanPercent";
     this.m_numPlanPercent.Size      = new System.Drawing.Size(96, 23);
     this.m_numPlanPercent.TabIndex  = 11;
     this.m_numPlanPercent.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_numPlanPercent.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.m_numPlanPercent_KeyDown);
     //
     // m_txtPlanQty
     //
     this.m_txtPlanQty.EnableAutoValidation   = false;
     this.m_txtPlanQty.EnableEnterKeyValidate = true;
     this.m_txtPlanQty.EnableEscapeKeyUndo    = true;
     this.m_txtPlanQty.EnableLastValidValue   = true;
     this.m_txtPlanQty.ErrorProvider          = null;
     this.m_txtPlanQty.ErrorProviderMessage   = "Invalid value";
     this.m_txtPlanQty.ForceFormatText        = true;
     this.m_txtPlanQty.Location         = new System.Drawing.Point(80, 240);
     this.m_txtPlanQty.Name             = "m_txtPlanQty";
     this.m_txtPlanQty.NumericCharStyle = ((SourceLibrary.Windows.Forms.NumericCharStyle)((SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator | SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol)));
     this.m_txtPlanQty.Size             = new System.Drawing.Size(121, 23);
     this.m_txtPlanQty.TabIndex         = 10;
     this.m_txtPlanQty.Text             = "";
     this.m_txtPlanQty.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtPlanQty.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtPlanQty_KeyDown);
     //
     // m_txtHight
     //
     this.m_txtHight.EnableAutoValidation   = false;
     this.m_txtHight.EnableEnterKeyValidate = true;
     this.m_txtHight.EnableEscapeKeyUndo    = true;
     this.m_txtHight.EnableLastValidValue   = true;
     this.m_txtHight.ErrorProvider          = null;
     this.m_txtHight.ErrorProviderMessage   = "Invalid value";
     this.m_txtHight.ForceFormatText        = true;
     this.m_txtHight.Location         = new System.Drawing.Point(80, 196);
     this.m_txtHight.Name             = "m_txtHight";
     this.m_txtHight.NumericCharStyle = ((SourceLibrary.Windows.Forms.NumericCharStyle)((SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator | SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol)));
     this.m_txtHight.Size             = new System.Drawing.Size(121, 23);
     this.m_txtHight.TabIndex         = 9;
     this.m_txtHight.Text             = "";
     this.m_txtHight.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtHight.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtHight_KeyDown);
     //
     // m_txtLow
     //
     this.m_txtLow.EnableAutoValidation   = false;
     this.m_txtLow.EnableEnterKeyValidate = true;
     this.m_txtLow.EnableEscapeKeyUndo    = true;
     this.m_txtLow.EnableLastValidValue   = true;
     this.m_txtLow.ErrorProvider          = null;
     this.m_txtLow.ErrorProviderMessage   = "Invalid value";
     this.m_txtLow.ForceFormatText        = true;
     this.m_txtLow.Location         = new System.Drawing.Point(80, 152);
     this.m_txtLow.Name             = "m_txtLow";
     this.m_txtLow.NumericCharStyle = ((SourceLibrary.Windows.Forms.NumericCharStyle)((SourceLibrary.Windows.Forms.NumericCharStyle.DecimalSeparator | SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol)));
     this.m_txtLow.Size             = new System.Drawing.Size(121, 23);
     this.m_txtLow.TabIndex         = 8;
     this.m_txtLow.Text             = "";
     this.m_txtLow.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.m_txtLow.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.m_txtLow_KeyDown);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 288);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(63, 19);
     this.label7.TabIndex = 7;
     this.label7.Text     = "领药比例";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(23, 240);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(48, 19);
     this.label6.TabIndex = 6;
     this.label6.Text     = "领药量";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(37, 200);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(34, 19);
     this.label5.TabIndex = 5;
     this.label5.Text     = "上限";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(37, 160);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(34, 19);
     this.label4.TabIndex = 4;
     this.label4.Text     = "下限";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(37, 112);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(34, 19);
     this.label3.TabIndex = 2;
     this.label3.Text     = "单位";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(63, 19);
     this.label2.TabIndex = 1;
     this.label2.Text     = "查找药品";
     //
     // m_txtMedID
     //
     this.m_txtMedID.EnableAutoValidation   = false;
     this.m_txtMedID.EnableEnterKeyValidate = true;
     this.m_txtMedID.EnableEscapeKeyUndo    = true;
     this.m_txtMedID.EnableLastValidValue   = true;
     this.m_txtMedID.ErrorProvider          = null;
     this.m_txtMedID.ErrorProviderMessage   = "Invalid value";
     this.m_txtMedID.ForceFormatText        = true;
     this.m_txtMedID.Location     = new System.Drawing.Point(80, 20);
     this.m_txtMedID.Name         = "m_txtMedID";
     this.m_txtMedID.Size         = new System.Drawing.Size(121, 23);
     this.m_txtMedID.TabIndex     = 0;
     this.m_txtMedID.Text         = "";
     this.m_txtMedID.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.m_txtMedID_KeyDown);
     this.m_txtMedID.Leave       += new System.EventHandler(this.m_txtMedID_Leave);
     this.m_txtMedID.TextChanged += new System.EventHandler(this.m_txtMedID_TextChanged);
     this.m_txtMedID.Enter       += new System.EventHandler(this.m_txtMedID_Enter);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox2.Controls.Add(this.m_cmdClose);
     this.groupBox2.Controls.Add(this.m_cmdRefersh);
     this.groupBox2.Controls.Add(this.m_cmdDelete);
     this.groupBox2.Controls.Add(this.m_cmdNew);
     this.groupBox2.Controls.Add(this.m_cmdSave);
     this.groupBox2.Location = new System.Drawing.Point(0, 368);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(264, 264);
     this.groupBox2.TabIndex = 4;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Enter   += new System.EventHandler(this.groupBox2_Enter);
     //
     // m_cmdClose
     //
     this.m_cmdClose.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdClose.DefaultScheme = true;
     this.m_cmdClose.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdClose.Hint          = "";
     this.m_cmdClose.Location      = new System.Drawing.Point(40, 216);
     this.m_cmdClose.Name          = "m_cmdClose";
     this.m_cmdClose.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdClose.Size          = new System.Drawing.Size(168, 32);
     this.m_cmdClose.TabIndex      = 4;
     this.m_cmdClose.Text          = "退出(&E)";
     this.m_cmdClose.Click        += new System.EventHandler(this.m_cmdClose_Click);
     //
     // m_cmdRefersh
     //
     this.m_cmdRefersh.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdRefersh.DefaultScheme = true;
     this.m_cmdRefersh.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdRefersh.Hint          = "";
     this.m_cmdRefersh.Location      = new System.Drawing.Point(40, 168);
     this.m_cmdRefersh.Name          = "m_cmdRefersh";
     this.m_cmdRefersh.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdRefersh.Size          = new System.Drawing.Size(168, 32);
     this.m_cmdRefersh.TabIndex      = 3;
     this.m_cmdRefersh.Text          = "刷新(&R)";
     this.m_cmdRefersh.Click        += new System.EventHandler(this.m_cmdRefersh_Click);
     //
     // m_cmdDelete
     //
     this.m_cmdDelete.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdDelete.DefaultScheme = true;
     this.m_cmdDelete.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdDelete.Hint          = "";
     this.m_cmdDelete.Location      = new System.Drawing.Point(40, 120);
     this.m_cmdDelete.Name          = "m_cmdDelete";
     this.m_cmdDelete.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdDelete.Size          = new System.Drawing.Size(168, 32);
     this.m_cmdDelete.TabIndex      = 2;
     this.m_cmdDelete.Text          = "删除(&D)";
     this.m_cmdDelete.Click        += new System.EventHandler(this.m_cmdDelete_Click);
     //
     // m_cmdNew
     //
     this.m_cmdNew.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdNew.DefaultScheme = true;
     this.m_cmdNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdNew.Hint          = "";
     this.m_cmdNew.Location      = new System.Drawing.Point(40, 72);
     this.m_cmdNew.Name          = "m_cmdNew";
     this.m_cmdNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdNew.Size          = new System.Drawing.Size(168, 32);
     this.m_cmdNew.TabIndex      = 1;
     this.m_cmdNew.Text          = "新增(&A)";
     this.m_cmdNew.Click        += new System.EventHandler(this.m_cmdNew_Click);
     //
     // m_cmdSave
     //
     this.m_cmdSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdSave.DefaultScheme = true;
     this.m_cmdSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdSave.Hint          = "";
     this.m_cmdSave.Location      = new System.Drawing.Point(40, 24);
     this.m_cmdSave.Name          = "m_cmdSave";
     this.m_cmdSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdSave.Size          = new System.Drawing.Size(168, 32);
     this.m_cmdSave.TabIndex      = 0;
     this.m_cmdSave.Text          = "保存(&S)";
     this.m_cmdSave.Click        += new System.EventHandler(this.m_cmdSave_Click);
     //
     // frmMedStoreLimit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(936, 637);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.m_lsvDetail);
     this.Controls.Add(this.m_cboMedStore);
     this.Controls.Add(this.label1);
     this.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name          = "frmMedStoreLimit";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "药房限额管理";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.frmMedStoreLimit_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ctlDataGridMed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_numPlanPercent)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #17
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.m_btnNew       = new PinkieControls.ButtonXP();
     this.m_btnSave      = new PinkieControls.ButtonXP();
     this.m_btnExit      = new PinkieControls.ButtonXP();
     this.m_txtName      = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.ra4            = new System.Windows.Forms.RadioButton();
     this.ra3            = new System.Windows.Forms.RadioButton();
     this.ra2            = new System.Windows.Forms.RadioButton();
     this.ra1            = new System.Windows.Forms.RadioButton();
     this.m_lvw          = new System.Windows.Forms.ListView();
     this.columnHeader1  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5  = new System.Windows.Forms.ColumnHeader();
     this.label2         = new System.Windows.Forms.Label();
     this.m_textUSERCODE = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.m_txtSORTCODE  = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label3         = new System.Windows.Forms.Label();
     this.label1         = new System.Windows.Forms.Label();
     this.m_btnDel       = new PinkieControls.ButtonXP();
     this.label4         = new System.Windows.Forms.Label();
     this.txtID          = new SourceLibrary.Windows.Forms.TextBoxTyped();
     this.txtLimit       = new SourceLibrary.Windows.Forms.TextBoxTypedNumeric();
     this.label5         = new System.Windows.Forms.Label();
     this.ra5            = new System.Windows.Forms.RadioButton();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_btnNew
     //
     this.m_btnNew.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnNew.DefaultScheme = true;
     this.m_btnNew.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnNew.Hint          = "";
     this.m_btnNew.Location      = new System.Drawing.Point(544, 264);
     this.m_btnNew.Name          = "m_btnNew";
     this.m_btnNew.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnNew.Size          = new System.Drawing.Size(112, 40);
     this.m_btnNew.TabIndex      = 16;
     this.m_btnNew.Text          = "新增(&A)";
     this.m_btnNew.Click        += new System.EventHandler(this.m_btnNew_Click);
     //
     // m_btnSave
     //
     this.m_btnSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnSave.DefaultScheme = true;
     this.m_btnSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnSave.Hint          = "";
     this.m_btnSave.Location      = new System.Drawing.Point(544, 322);
     this.m_btnSave.Name          = "m_btnSave";
     this.m_btnSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnSave.Size          = new System.Drawing.Size(112, 40);
     this.m_btnSave.TabIndex      = 17;
     this.m_btnSave.Text          = "保存(&S)";
     this.m_btnSave.Click        += new System.EventHandler(this.m_btnSave_Click);
     //
     // m_btnExit
     //
     this.m_btnExit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnExit.DefaultScheme = true;
     this.m_btnExit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnExit.Hint          = "";
     this.m_btnExit.Location      = new System.Drawing.Point(544, 438);
     this.m_btnExit.Name          = "m_btnExit";
     this.m_btnExit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnExit.Size          = new System.Drawing.Size(112, 40);
     this.m_btnExit.TabIndex      = 21;
     this.m_btnExit.Text          = "退出(Esc)";
     this.m_btnExit.Click        += new System.EventHandler(this.m_btnExit_Click);
     //
     // m_txtName
     //
     this.m_txtName.EnableAutoValidation   = true;
     this.m_txtName.EnableEnterKeyValidate = true;
     this.m_txtName.EnableEscapeKeyUndo    = true;
     this.m_txtName.EnableLastValidValue   = true;
     this.m_txtName.ErrorProvider          = null;
     this.m_txtName.ErrorProviderMessage   = "Invalid value";
     this.m_txtName.ForceFormatText        = true;
     this.m_txtName.Location     = new System.Drawing.Point(528, 152);
     this.m_txtName.MaxLength    = 50;
     this.m_txtName.Name         = "m_txtName";
     this.m_txtName.Size         = new System.Drawing.Size(144, 23);
     this.m_txtName.TabIndex     = 10;
     this.m_txtName.Text         = "";
     this.m_txtName.TextChanged += new System.EventHandler(this.m_txtName_TextChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ra5);
     this.groupBox1.Controls.Add(this.ra4);
     this.groupBox1.Controls.Add(this.ra3);
     this.groupBox1.Controls.Add(this.ra2);
     this.groupBox1.Controls.Add(this.ra1);
     this.groupBox1.Location = new System.Drawing.Point(0, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(720, 64);
     this.groupBox1.TabIndex = 25;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "费用类型";
     //
     // ra4
     //
     this.ra4.Location        = new System.Drawing.Point(440, 24);
     this.ra4.Name            = "ra4";
     this.ra4.Size            = new System.Drawing.Size(88, 32);
     this.ra4.TabIndex        = 3;
     this.ra4.Text            = "住院发票";
     this.ra4.CheckedChanged += new System.EventHandler(this.ra1_CheckedChanged);
     //
     // ra3
     //
     this.ra3.Location        = new System.Drawing.Point(288, 24);
     this.ra3.Name            = "ra3";
     this.ra3.Size            = new System.Drawing.Size(88, 32);
     this.ra3.TabIndex        = 2;
     this.ra3.Text            = "住院核算";
     this.ra3.CheckedChanged += new System.EventHandler(this.ra1_CheckedChanged);
     //
     // ra2
     //
     this.ra2.Location        = new System.Drawing.Point(152, 24);
     this.ra2.Name            = "ra2";
     this.ra2.Size            = new System.Drawing.Size(88, 32);
     this.ra2.TabIndex        = 1;
     this.ra2.Text            = "门诊发票";
     this.ra2.CheckedChanged += new System.EventHandler(this.ra1_CheckedChanged);
     //
     // ra1
     //
     this.ra1.Location        = new System.Drawing.Point(24, 24);
     this.ra1.Name            = "ra1";
     this.ra1.Size            = new System.Drawing.Size(88, 32);
     this.ra1.TabIndex        = 0;
     this.ra1.Text            = "门诊核算";
     this.ra1.CheckedChanged += new System.EventHandler(this.ra1_CheckedChanged);
     //
     // m_lvw
     //
     this.m_lvw.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                               | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lvw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5
     });
     this.m_lvw.FullRowSelect         = true;
     this.m_lvw.GridLines             = true;
     this.m_lvw.HideSelection         = false;
     this.m_lvw.Location              = new System.Drawing.Point(0, 80);
     this.m_lvw.Name                  = "m_lvw";
     this.m_lvw.Size                  = new System.Drawing.Size(424, 432);
     this.m_lvw.TabIndex              = 50;
     this.m_lvw.View                  = System.Windows.Forms.View.Details;
     this.m_lvw.Click                += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     this.m_lvw.SelectedIndexChanged += new System.EventHandler(this.m_lvw_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "类型ID";
     this.columnHeader1.Width = 55;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "排序号";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 62;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "类别名称";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 117;
     //
     // columnHeader4
     //
     this.columnHeader4.Text      = "项目代码";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width     = 96;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "公费上限";
     this.columnHeader5.Width = 84;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(456, 190);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(70, 19);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "项目代码:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_textUSERCODE
     //
     this.m_textUSERCODE.EnableAutoValidation   = true;
     this.m_textUSERCODE.EnableEnterKeyValidate = true;
     this.m_textUSERCODE.EnableEscapeKeyUndo    = true;
     this.m_textUSERCODE.EnableLastValidValue   = true;
     this.m_textUSERCODE.ErrorProvider          = null;
     this.m_textUSERCODE.ErrorProviderMessage   = "Invalid value";
     this.m_textUSERCODE.ForceFormatText        = true;
     this.m_textUSERCODE.ImeMode   = System.Windows.Forms.ImeMode.Off;
     this.m_textUSERCODE.Location  = new System.Drawing.Point(528, 184);
     this.m_textUSERCODE.MaxLength = 10;
     this.m_textUSERCODE.Name      = "m_textUSERCODE";
     this.m_textUSERCODE.Size      = new System.Drawing.Size(144, 23);
     this.m_textUSERCODE.TabIndex  = 15;
     this.m_textUSERCODE.Text      = "";
     //
     // m_txtSORTCODE
     //
     this.m_txtSORTCODE.EnableAutoValidation   = false;
     this.m_txtSORTCODE.EnableEnterKeyValidate = false;
     this.m_txtSORTCODE.EnableEscapeKeyUndo    = true;
     this.m_txtSORTCODE.EnableLastValidValue   = true;
     this.m_txtSORTCODE.ErrorProvider          = null;
     this.m_txtSORTCODE.ErrorProviderMessage   = "Invalid value";
     this.m_txtSORTCODE.ForceFormatText        = true;
     this.m_txtSORTCODE.Location         = new System.Drawing.Point(528, 120);
     this.m_txtSORTCODE.MaxLength        = 2;
     this.m_txtSORTCODE.Name             = "m_txtSORTCODE";
     this.m_txtSORTCODE.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol;
     this.m_txtSORTCODE.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.m_txtSORTCODE.Size             = new System.Drawing.Size(144, 23);
     this.m_txtSORTCODE.TabIndex         = 5;
     this.m_txtSORTCODE.Text             = "";
     this.m_txtSORTCODE.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(456, 125);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(70, 19);
     this.label3.TabIndex  = 14;
     this.label3.Text      = "排 序 号:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(456, 156);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(70, 19);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "名    称:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_btnDel
     //
     this.m_btnDel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnDel.DefaultScheme = true;
     this.m_btnDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_btnDel.Hint          = "";
     this.m_btnDel.Location      = new System.Drawing.Point(544, 380);
     this.m_btnDel.Name          = "m_btnDel";
     this.m_btnDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnDel.Size          = new System.Drawing.Size(112, 40);
     this.m_btnDel.TabIndex      = 19;
     this.m_btnDel.Text          = "删除(&D)";
     this.m_btnDel.Click        += new System.EventHandler(this.m_btnDel_Click);
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(456, 92);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(63, 19);
     this.label4.TabIndex  = 16;
     this.label4.Text      = "类型 ID:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtID
     //
     this.txtID.EnableAutoValidation   = true;
     this.txtID.EnableEnterKeyValidate = true;
     this.txtID.EnableEscapeKeyUndo    = true;
     this.txtID.EnableLastValidValue   = true;
     this.txtID.ErrorProvider          = null;
     this.txtID.ErrorProviderMessage   = "Invalid value";
     this.txtID.ForceFormatText        = true;
     this.txtID.Location  = new System.Drawing.Point(528, 88);
     this.txtID.MaxLength = 4;
     this.txtID.Name      = "txtID";
     this.txtID.Size      = new System.Drawing.Size(144, 23);
     this.txtID.TabIndex  = 0;
     this.txtID.Text      = "";
     //
     // txtLimit
     //
     this.txtLimit.EnableAutoValidation   = false;
     this.txtLimit.EnableEnterKeyValidate = false;
     this.txtLimit.EnableEscapeKeyUndo    = true;
     this.txtLimit.EnableLastValidValue   = true;
     this.txtLimit.ErrorProvider          = null;
     this.txtLimit.ErrorProviderMessage   = "Invalid value";
     this.txtLimit.ForceFormatText        = true;
     this.txtLimit.Location         = new System.Drawing.Point(528, 216);
     this.txtLimit.MaxLength        = 10;
     this.txtLimit.Name             = "txtLimit";
     this.txtLimit.NumericCharStyle = SourceLibrary.Windows.Forms.NumericCharStyle.NegativeSymbol;
     this.txtLimit.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.txtLimit.Size             = new System.Drawing.Size(144, 23);
     this.txtLimit.TabIndex         = 20;
     this.txtLimit.Text             = "";
     this.txtLimit.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(456, 216);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(70, 19);
     this.label5.TabIndex  = 52;
     this.label5.Text      = "公费上限:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ra5
     //
     this.ra5.Location        = new System.Drawing.Point(584, 24);
     this.ra5.Name            = "ra5";
     this.ra5.Size            = new System.Drawing.Size(120, 32);
     this.ra5.TabIndex        = 4;
     this.ra5.Text            = "病案核算分类";
     this.ra5.CheckedChanged += new System.EventHandler(this.ra1_CheckedChanged);
     //
     // frmFeeType
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(722, 511);
     this.Controls.Add(this.txtLimit);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtID);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.m_txtSORTCODE);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.m_txtName);
     this.Controls.Add(this.m_btnExit);
     this.Controls.Add(this.m_btnSave);
     this.Controls.Add(this.m_btnNew);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.m_textUSERCODE);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.m_btnDel);
     this.Controls.Add(this.m_lvw);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmFeeType";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "收费项目类型";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmFeeType_KeyDown);
     this.Load           += new System.EventHandler(this.frmChargeCat_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }