public void m_cmthEventItem_DropDown(object sender, System.EventArgs e, string p_strEventFlag)
        {
            com.digitalwave.Utility.Controls.ctlComboBox cboEvent = sender as com.digitalwave.Utility.Controls.ctlComboBox;
            cboEvent.ClearItem();
            clsThreeMeasureEventInfo[] objEvents = m_objGetThreeMeasureEventInfoByType(p_strEventFlag);

            for (int i = 0; i < objEvents.Length; i++)
            {
                cboEvent.AddItem(objEvents[i]);
            }
        }
        /// <summary>
        /// 删除特殊记录
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        /// <param name="p_strEventFlag"></param>
        public void m_mthEventDeleteItem(object sender, System.EventArgs e, string p_strEventFlag)
        {
            MenuItem mniEvent = sender as MenuItem;

            com.digitalwave.Utility.Controls.ctlComboBox cboEvent = mniEvent.GetContextMenu().SourceControl as com.digitalwave.Utility.Controls.ctlComboBox;
            if (cboEvent == null)
            {
                return;
            }

            clsThreeMeasureEventInfo objEvent = (clsThreeMeasureEventInfo)cboEvent.SelectedItem;

            if (objEvent == null)
            {
                return;
            }
            objEvent.m_strStatus = "1";
            objEvent.m_strThreeMeasureEventFlag = p_strEventFlag;
            objEvent.m_strOperatorID            = clsEMRLogin.LoginInfo.m_strEmpID;
            objEvent.m_strDeActivedDate         = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
            long lngRes = m_lngDelete(objEvent, clsEMRLogin.LoginInfo.m_strEmpID);
        }
        /// <summary>
        /// 修改特殊记录
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        /// <param name="p_strEventFlag"></param>
        public void m_mthEventModifyItem(object sender, System.EventArgs e, string p_strEventFlag)
        {
            MenuItem mniEvent = sender as MenuItem;

            com.digitalwave.Utility.Controls.ctlComboBox cboEvent = mniEvent.GetContextMenu().SourceControl as com.digitalwave.Utility.Controls.ctlComboBox;
            if (cboEvent == null)
            {
                return;
            }
            clsThreeMeasureEventInfo objEvent = (clsThreeMeasureEventInfo)cboEvent.SelectedItem;

            if (objEvent == null)
            {
                return;
            }
            clsThreeMeasureEventInfo objEventNew = (clsThreeMeasureEventInfo)cboEvent.SelectedItem;

            objEventNew.m_strThreeMeasureEventName = cboEvent.Text.Trim();
            objEventNew.m_strStatus             = "0";
            objEvent.m_strThreeMeasureEventFlag = p_strEventFlag;
            objEventNew.m_strOperatorID         = clsEMRLogin.LoginInfo.m_strEmpID;
            long lngRes = m_lngModify(objEvent, objEventNew, clsEMRLogin.LoginInfo.m_strEmpID);
        }
        /// <summary>
        /// 添加特殊记录
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        /// <param name="p_strEventFlag"></param>
        public void m_mthEventAddItem(object sender, EventArgs e, string p_strEventFlag)
        {
            MenuItem mniEvent = sender as MenuItem;

            com.digitalwave.Utility.Controls.ctlComboBox cboEvent = mniEvent.GetContextMenu().SourceControl as com.digitalwave.Utility.Controls.ctlComboBox;
            if (cboEvent == null)
            {
                return;
            }
            clsThreeMeasureEventInfo objEvent = new clsThreeMeasureEventInfo();

            if (objEvent == null)
            {
                return;
            }
            objEvent.m_strThreeMeasureEventID   = m_strGetMaxThreeMeasureEventID();
            objEvent.m_strThreeMeasureEventName = cboEvent.Text.Trim();
            objEvent.m_strBeginEventDate        = System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
            objEvent.m_strStatus = "0";
            objEvent.m_strThreeMeasureEventFlag = p_strEventFlag;
            objEvent.m_strOperatorID            = clsEMRLogin.LoginInfo.m_strEmpID;
            long lngRes = m_lngAddNew(objEvent);
        }
Ejemplo n.º 5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_lsvAssistantDiagnoseItem = new System.Windows.Forms.ListView();
     this.columnHeader1   = new System.Windows.Forms.ColumnHeader();
     this.m_cboCategory   = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.m_cboCategoryId = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.m_lsvPreview    = new System.Windows.Forms.ListView();
     this.columnHeader2   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3   = new System.Windows.Forms.ColumnHeader();
     this.m_cmdOK         = new PinkieControls.ButtonXP();
     this.SuspendLayout();
     //
     // m_lsvAssistantDiagnoseItem
     //
     this.m_lsvAssistantDiagnoseItem.AllowColumnReorder = true;
     this.m_lsvAssistantDiagnoseItem.BackColor          = System.Drawing.Color.White;
     this.m_lsvAssistantDiagnoseItem.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1
     });
     this.m_lsvAssistantDiagnoseItem.Font                  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lsvAssistantDiagnoseItem.ForeColor             = System.Drawing.Color.Black;
     this.m_lsvAssistantDiagnoseItem.FullRowSelect         = true;
     this.m_lsvAssistantDiagnoseItem.GridLines             = true;
     this.m_lsvAssistantDiagnoseItem.HideSelection         = false;
     this.m_lsvAssistantDiagnoseItem.Location              = new System.Drawing.Point(8, 36);
     this.m_lsvAssistantDiagnoseItem.MultiSelect           = false;
     this.m_lsvAssistantDiagnoseItem.Name                  = "m_lsvAssistantDiagnoseItem";
     this.m_lsvAssistantDiagnoseItem.Size                  = new System.Drawing.Size(188, 316);
     this.m_lsvAssistantDiagnoseItem.TabIndex              = 6;
     this.m_lsvAssistantDiagnoseItem.View                  = System.Windows.Forms.View.Details;
     this.m_lsvAssistantDiagnoseItem.DoubleClick          += new System.EventHandler(this.m_cmdOK_Click);
     this.m_lsvAssistantDiagnoseItem.SelectedIndexChanged += new System.EventHandler(this.m_lsvAssistantDiagnoseItem_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "模板名称";
     this.columnHeader1.Width = 183;
     //
     // m_cboCategory
     //
     this.m_cboCategory.BackColor           = System.Drawing.Color.White;
     this.m_cboCategory.BorderColor         = System.Drawing.Color.Black;
     this.m_cboCategory.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_cboCategory.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboCategory.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboCategory.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboCategory.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboCategory.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboCategory.ForeColor                = System.Drawing.Color.Black;
     this.m_cboCategory.ListBackColor            = System.Drawing.Color.White;
     this.m_cboCategory.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboCategory.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboCategory.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboCategory.Location                 = new System.Drawing.Point(8, 8);
     this.m_cboCategory.m_BlnEnableItemEventMenu = true;
     this.m_cboCategory.Name                     = "m_cboCategory";
     this.m_cboCategory.SelectedIndex            = -1;
     this.m_cboCategory.SelectedItem             = null;
     this.m_cboCategory.Size                     = new System.Drawing.Size(188, 23);
     this.m_cboCategory.TabIndex                 = 1;
     this.m_cboCategory.TextBackColor            = System.Drawing.Color.White;
     this.m_cboCategory.TextForeColor            = System.Drawing.Color.Black;
     this.m_cboCategory.SelectedIndexChanged    += new System.EventHandler(this.m_cboCategory_SelectedIndexChanged);
     //
     // m_cboCategoryId
     //
     this.m_cboCategoryId.BackColor           = System.Drawing.Color.White;
     this.m_cboCategoryId.BorderColor         = System.Drawing.Color.Black;
     this.m_cboCategoryId.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_cboCategoryId.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboCategoryId.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboCategoryId.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboCategoryId.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboCategoryId.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboCategoryId.ForeColor                = System.Drawing.Color.Black;
     this.m_cboCategoryId.ListBackColor            = System.Drawing.Color.White;
     this.m_cboCategoryId.ListForeColor            = System.Drawing.Color.Black;
     this.m_cboCategoryId.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboCategoryId.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboCategoryId.Location                 = new System.Drawing.Point(8, 8);
     this.m_cboCategoryId.m_BlnEnableItemEventMenu = true;
     this.m_cboCategoryId.Name                     = "m_cboCategoryId";
     this.m_cboCategoryId.SelectedIndex            = -1;
     this.m_cboCategoryId.SelectedItem             = null;
     this.m_cboCategoryId.Size                     = new System.Drawing.Size(188, 23);
     this.m_cboCategoryId.TabIndex                 = 7;
     this.m_cboCategoryId.TextBackColor            = System.Drawing.Color.White;
     this.m_cboCategoryId.TextForeColor            = System.Drawing.Color.Black;
     this.m_cboCategoryId.Visible                  = false;
     //
     // m_lsvPreview
     //
     this.m_lsvPreview.BackColor = System.Drawing.Color.White;
     this.m_lsvPreview.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader2,
         this.columnHeader3
     });
     this.m_lsvPreview.ForeColor     = System.Drawing.Color.Black;
     this.m_lsvPreview.FullRowSelect = true;
     this.m_lsvPreview.GridLines     = true;
     this.m_lsvPreview.Location      = new System.Drawing.Point(204, 8);
     this.m_lsvPreview.Name          = "m_lsvPreview";
     this.m_lsvPreview.Size          = new System.Drawing.Size(392, 344);
     this.m_lsvPreview.TabIndex      = 8;
     this.m_lsvPreview.View          = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "项目名称";
     this.columnHeader2.Width = 150;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "项目内容";
     this.columnHeader3.Width = 235;
     //
     // m_cmdOK
     //
     this.m_cmdOK.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdOK.DefaultScheme = true;
     this.m_cmdOK.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdOK.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdOK.Hint          = "";
     this.m_cmdOK.Location      = new System.Drawing.Point(524, 356);
     this.m_cmdOK.Name          = "m_cmdOK";
     this.m_cmdOK.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdOK.Size          = new System.Drawing.Size(72, 32);
     this.m_cmdOK.TabIndex      = 10000002;
     this.m_cmdOK.Text          = "确 定";
     this.m_cmdOK.Click        += new System.EventHandler(this.m_cmdOK_Click);
     //
     // frmInvokeTemplateByICD10
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(604, 391);
     this.Controls.Add(this.m_cmdOK);
     this.Controls.Add(this.m_lsvPreview);
     this.Controls.Add(this.m_lsvAssistantDiagnoseItem);
     this.Controls.Add(this.m_cboCategory);
     this.Controls.Add(this.m_cboCategoryId);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.ForeColor       = System.Drawing.Color.Black;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmInvokeTemplateByICD10";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "疾病模板选择";
     this.TopMost         = true;
     this.Load           += new System.EventHandler(this.frmInvokeTemplateByICD10_Load);
     this.VisibleChanged += new System.EventHandler(this.frmInvokeTemplateByICD10_VisibleChanged);
     this.ResumeLayout(false);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmEMRBaseForm));
     this.lblDept              = new System.Windows.Forms.Label();
     this.lblAreaTitle         = new System.Windows.Forms.Label();
     this.m_cboDept            = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.m_cboArea            = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.lblAgeTitle          = new System.Windows.Forms.Label();
     this.lblSexTitle          = new System.Windows.Forms.Label();
     this.lblSex               = new System.Windows.Forms.Label();
     this.lblAge               = new System.Windows.Forms.Label();
     this.lblInHospitalNoTitle = new System.Windows.Forms.Label();
     this.txtInPatientID       = new com.digitalwave.Utility.Controls.ctlBorderTextBox();
     this.lblBedNoTitle        = new System.Windows.Forms.Label();
     this.lblNameTitle         = new System.Windows.Forms.Label();
     this.m_txtPatientName     = new com.digitalwave.Utility.Controls.ctlBorderTextBox();
     this.m_dtpCreateDate      = new com.digitalwave.Utility.Controls.ctlTimePicker();
     this.lblInpatientdate     = new System.Windows.Forms.Label();
     this.m_cboBed             = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.label2               = new System.Windows.Forms.Label();
     this.picLogo              = new System.Windows.Forms.PictureBox();
     this.SuspendLayout();
     //
     // lblDept
     //
     this.lblDept.AutoSize  = true;
     this.lblDept.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblDept.ForeColor = System.Drawing.Color.Black;
     this.lblDept.Location  = new System.Drawing.Point(64, 12);
     this.lblDept.Name      = "lblDept";
     this.lblDept.Size      = new System.Drawing.Size(70, 19);
     this.lblDept.TabIndex  = 0;
     this.lblDept.Text      = "科    室:";
     //
     // lblAreaTitle
     //
     this.lblAreaTitle.AutoSize  = true;
     this.lblAreaTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblAreaTitle.ForeColor = System.Drawing.Color.Black;
     this.lblAreaTitle.Location  = new System.Drawing.Point(364, 12);
     this.lblAreaTitle.Name      = "lblAreaTitle";
     this.lblAreaTitle.Size      = new System.Drawing.Size(56, 19);
     this.lblAreaTitle.TabIndex  = 1;
     this.lblAreaTitle.Text      = "病  区:";
     //
     // m_cboDept
     //
     this.m_cboDept.AccessibleName      = "NoDefault";
     this.m_cboDept.BackColor           = System.Drawing.SystemColors.InactiveCaptionText;
     this.m_cboDept.BorderColor         = System.Drawing.Color.Black;
     this.m_cboDept.DropButtonBackColor = System.Drawing.SystemColors.ControlLight;
     this.m_cboDept.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboDept.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboDept.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboDept.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDept.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDept.ForeColor                = System.Drawing.Color.Black;
     this.m_cboDept.ListBackColor            = System.Drawing.SystemColors.ControlLight;
     this.m_cboDept.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboDept.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboDept.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboDept.Location                 = new System.Drawing.Point(136, 8);
     this.m_cboDept.m_BlnEnableItemEventMenu = false;
     this.m_cboDept.Name                     = "m_cboDept";
     this.m_cboDept.SelectedIndex            = -1;
     this.m_cboDept.SelectedItem             = null;
     this.m_cboDept.SelectionStart           = -1;
     this.m_cboDept.Size                     = new System.Drawing.Size(212, 23);
     this.m_cboDept.TabIndex                 = 100;
     this.m_cboDept.TabStop                  = false;
     this.m_cboDept.TextBackColor            = System.Drawing.Color.White;
     this.m_cboDept.TextForeColor            = System.Drawing.Color.Black;
     //
     // m_cboArea
     //
     this.m_cboArea.AccessibleName      = "NoDefault";
     this.m_cboArea.BackColor           = System.Drawing.Color.White;
     this.m_cboArea.BorderColor         = System.Drawing.Color.Black;
     this.m_cboArea.DropButtonBackColor = System.Drawing.SystemColors.ControlLight;
     this.m_cboArea.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboArea.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboArea.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboArea.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboArea.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboArea.ForeColor                = System.Drawing.Color.Black;
     this.m_cboArea.ListBackColor            = System.Drawing.SystemColors.ControlLight;
     this.m_cboArea.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboArea.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboArea.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboArea.Location                 = new System.Drawing.Point(420, 8);
     this.m_cboArea.m_BlnEnableItemEventMenu = false;
     this.m_cboArea.Name                     = "m_cboArea";
     this.m_cboArea.SelectedIndex            = -1;
     this.m_cboArea.SelectedItem             = null;
     this.m_cboArea.SelectionStart           = -1;
     this.m_cboArea.Size                     = new System.Drawing.Size(144, 23);
     this.m_cboArea.TabIndex                 = 200;
     this.m_cboArea.TabStop                  = false;
     this.m_cboArea.TextBackColor            = System.Drawing.Color.White;
     this.m_cboArea.TextForeColor            = System.Drawing.Color.Black;
     //
     // lblAgeTitle
     //
     this.lblAgeTitle.AutoSize  = true;
     this.lblAgeTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblAgeTitle.ForeColor = System.Drawing.Color.Black;
     this.lblAgeTitle.Location  = new System.Drawing.Point(740, 40);
     this.lblAgeTitle.Name      = "lblAgeTitle";
     this.lblAgeTitle.Size      = new System.Drawing.Size(41, 19);
     this.lblAgeTitle.TabIndex  = 8;
     this.lblAgeTitle.Text      = "年龄:";
     //
     // lblSexTitle
     //
     this.lblSexTitle.AutoSize  = true;
     this.lblSexTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblSexTitle.ForeColor = System.Drawing.Color.Black;
     this.lblSexTitle.Location  = new System.Drawing.Point(740, 12);
     this.lblSexTitle.Name      = "lblSexTitle";
     this.lblSexTitle.Size      = new System.Drawing.Size(41, 19);
     this.lblSexTitle.TabIndex  = 3;
     this.lblSexTitle.Text      = "性别:";
     //
     // lblSex
     //
     this.lblSex.BackColor = System.Drawing.Color.Transparent;
     this.lblSex.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblSex.ForeColor = System.Drawing.Color.Black;
     this.lblSex.Location  = new System.Drawing.Point(784, 12);
     this.lblSex.Name      = "lblSex";
     this.lblSex.Size      = new System.Drawing.Size(48, 19);
     this.lblSex.TabIndex  = 4;
     //
     // lblAge
     //
     this.lblAge.BackColor = System.Drawing.Color.Transparent;
     this.lblAge.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblAge.ForeColor = System.Drawing.Color.Black;
     this.lblAge.Location  = new System.Drawing.Point(784, 40);
     this.lblAge.Name      = "lblAge";
     this.lblAge.Size      = new System.Drawing.Size(48, 19);
     this.lblAge.TabIndex  = 9;
     //
     // lblInHospitalNoTitle
     //
     this.lblInHospitalNoTitle.AutoSize  = true;
     this.lblInHospitalNoTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblInHospitalNoTitle.ForeColor = System.Drawing.Color.Black;
     this.lblInHospitalNoTitle.Location  = new System.Drawing.Point(364, 40);
     this.lblInHospitalNoTitle.Name      = "lblInHospitalNoTitle";
     this.lblInHospitalNoTitle.Size      = new System.Drawing.Size(56, 19);
     this.lblInHospitalNoTitle.TabIndex  = 6;
     this.lblInHospitalNoTitle.Text      = "住院号:";
     //
     // txtInPatientID
     //
     this.txtInPatientID.AccessibleName = "NoDefault";
     this.txtInPatientID.AutoSize       = false;
     this.txtInPatientID.BackColor      = System.Drawing.Color.White;
     this.txtInPatientID.BorderColor    = System.Drawing.Color.Transparent;
     this.txtInPatientID.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtInPatientID.Font           = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.txtInPatientID.ForeColor      = System.Drawing.Color.Black;
     this.txtInPatientID.Location       = new System.Drawing.Point(420, 36);
     this.txtInPatientID.MaxLength      = 20;
     this.txtInPatientID.Name           = "txtInPatientID";
     this.txtInPatientID.Size           = new System.Drawing.Size(144, 21);
     this.txtInPatientID.TabIndex       = 500;
     this.txtInPatientID.Text           = "";
     //
     // lblBedNoTitle
     //
     this.lblBedNoTitle.AutoSize  = true;
     this.lblBedNoTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblBedNoTitle.ForeColor = System.Drawing.Color.Black;
     this.lblBedNoTitle.Location  = new System.Drawing.Point(580, 12);
     this.lblBedNoTitle.Name      = "lblBedNoTitle";
     this.lblBedNoTitle.Size      = new System.Drawing.Size(41, 19);
     this.lblBedNoTitle.TabIndex  = 2;
     this.lblBedNoTitle.Text      = "床号:";
     //
     // lblNameTitle
     //
     this.lblNameTitle.AutoSize  = true;
     this.lblNameTitle.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblNameTitle.ForeColor = System.Drawing.Color.Black;
     this.lblNameTitle.Location  = new System.Drawing.Point(580, 40);
     this.lblNameTitle.Name      = "lblNameTitle";
     this.lblNameTitle.Size      = new System.Drawing.Size(41, 19);
     this.lblNameTitle.TabIndex  = 7;
     this.lblNameTitle.Text      = "姓名:";
     //
     // m_txtPatientName
     //
     this.m_txtPatientName.AccessibleName = "NoDefault";
     this.m_txtPatientName.AutoSize       = false;
     this.m_txtPatientName.BackColor      = System.Drawing.Color.White;
     this.m_txtPatientName.BorderColor    = System.Drawing.Color.Transparent;
     this.m_txtPatientName.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_txtPatientName.Font           = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtPatientName.ForeColor      = System.Drawing.Color.Black;
     this.m_txtPatientName.Location       = new System.Drawing.Point(624, 36);
     this.m_txtPatientName.MaxLength      = 50;
     this.m_txtPatientName.Name           = "m_txtPatientName";
     this.m_txtPatientName.Size           = new System.Drawing.Size(108, 21);
     this.m_txtPatientName.TabIndex       = 600;
     this.m_txtPatientName.Text           = "";
     //
     // m_dtpCreateDate
     //
     this.m_dtpCreateDate.BorderColor         = System.Drawing.Color.Black;
     this.m_dtpCreateDate.CustomFormat        = "yyyy年MM月dd日 HH:mm:ss";
     this.m_dtpCreateDate.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_dtpCreateDate.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_dtpCreateDate.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_dtpCreateDate.flatFont            = new System.Drawing.Font("宋体", 12F);
     this.m_dtpCreateDate.Font             = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_dtpCreateDate.Format           = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.m_dtpCreateDate.Location         = new System.Drawing.Point(136, 36);
     this.m_dtpCreateDate.m_BlnOnlyTime    = false;
     this.m_dtpCreateDate.m_EnmVisibleFlag = com.digitalwave.Utility.Controls.ctlTimePicker.enmDateTimeFlag.Second;
     this.m_dtpCreateDate.MaxDate          = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.m_dtpCreateDate.MinDate          = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.m_dtpCreateDate.Name             = "m_dtpCreateDate";
     this.m_dtpCreateDate.ReadOnly         = false;
     this.m_dtpCreateDate.Size             = new System.Drawing.Size(212, 22);
     this.m_dtpCreateDate.TabIndex         = 400;
     this.m_dtpCreateDate.TextBackColor    = System.Drawing.Color.White;
     this.m_dtpCreateDate.TextForeColor    = System.Drawing.Color.Black;
     //
     // lblInpatientdate
     //
     this.lblInpatientdate.AutoSize  = true;
     this.lblInpatientdate.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.lblInpatientdate.ForeColor = System.Drawing.Color.Black;
     this.lblInpatientdate.Location  = new System.Drawing.Point(64, 40);
     this.lblInpatientdate.Name      = "lblInpatientdate";
     this.lblInpatientdate.Size      = new System.Drawing.Size(70, 19);
     this.lblInpatientdate.TabIndex  = 5;
     this.lblInpatientdate.Text      = "入院日期:";
     //
     // m_cboBed
     //
     this.m_cboBed.AccessibleName      = "NoDefault";
     this.m_cboBed.BackColor           = System.Drawing.Color.White;
     this.m_cboBed.BorderColor         = System.Drawing.Color.Black;
     this.m_cboBed.DropButtonBackColor = System.Drawing.SystemColors.ControlLight;
     this.m_cboBed.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboBed.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboBed.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboBed.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboBed.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboBed.ForeColor                = System.Drawing.Color.Black;
     this.m_cboBed.ListBackColor            = System.Drawing.SystemColors.ControlLight;
     this.m_cboBed.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboBed.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboBed.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboBed.Location                 = new System.Drawing.Point(624, 8);
     this.m_cboBed.m_BlnEnableItemEventMenu = false;
     this.m_cboBed.Name                     = "m_cboBed";
     this.m_cboBed.SelectedIndex            = -1;
     this.m_cboBed.SelectedItem             = null;
     this.m_cboBed.SelectionStart           = -1;
     this.m_cboBed.Size                     = new System.Drawing.Size(108, 23);
     this.m_cboBed.TabIndex                 = 300;
     this.m_cboBed.TabStop                  = false;
     this.m_cboBed.TextBackColor            = System.Drawing.Color.White;
     this.m_cboBed.TextForeColor            = System.Drawing.Color.Black;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.BackColor = System.Drawing.Color.MediumVioletRed;
     this.label2.ForeColor = System.Drawing.SystemColors.Highlight;
     this.label2.Location  = new System.Drawing.Point(4, 64);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(828, 2);
     this.label2.TabIndex  = 10;
     //
     // picLogo
     //
     this.picLogo.Image    = ((System.Drawing.Image)(resources.GetObject("picLogo.Image")));
     this.picLogo.Location = new System.Drawing.Point(8, 8);
     this.picLogo.Name     = "picLogo";
     this.picLogo.Size     = new System.Drawing.Size(49, 49);
     this.picLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.picLogo.TabIndex = 10000034;
     this.picLogo.TabStop  = false;
     //
     // frmEMRBaseForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(844, 397);
     this.Controls.Add(this.picLogo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.m_cboBed);
     this.Controls.Add(this.lblInpatientdate);
     this.Controls.Add(this.m_dtpCreateDate);
     this.Controls.Add(this.lblNameTitle);
     this.Controls.Add(this.m_txtPatientName);
     this.Controls.Add(this.lblBedNoTitle);
     this.Controls.Add(this.lblInHospitalNoTitle);
     this.Controls.Add(this.txtInPatientID);
     this.Controls.Add(this.lblAgeTitle);
     this.Controls.Add(this.lblSexTitle);
     this.Controls.Add(this.lblSex);
     this.Controls.Add(this.lblAge);
     this.Controls.Add(this.lblDept);
     this.Controls.Add(this.lblAreaTitle);
     this.Controls.Add(this.m_cboDept);
     this.Controls.Add(this.m_cboArea);
     this.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Icon      = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name      = "frmEMRBaseForm";
     this.Text      = "frmEMRBaseForm";
     this.ResumeLayout(false);
 }
Ejemplo n.º 7
0
        //谢桂军2003.12.19日将 lblPupilReflection1.Text = "瞳孔反射:右" 更改成 lblPupilReflection1.Text = "瞳孔光反射:右"
        //谢桂军2003.12.19日将 m_lblTurnBaseDept.Text = "转入科室:" 更改成 m_lblTurnBaseDept.Text = "原转入科室:";

        #region Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.m_cboToDept = new com.digitalwave.Utility.Controls.ctlComboBox();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.m_pnlNewBase.SuspendLayout();
            this.SuspendLayout();
            //
            // m_lblAddress
            //
            this.m_lblAddress.Location  = new System.Drawing.Point(564, 44);
            this.m_lblAddress.Size      = new System.Drawing.Size(224, 36);
            this.m_lblAddress.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // lblAddress
            //
            this.lblAddress.Size = new System.Drawing.Size(42, 14);
            this.lblAddress.Text = "住址:";
            //
            // m_lblTurnBaseDept
            //
            this.m_lblTurnBaseDept.Location = new System.Drawing.Point(20, 133);
            this.m_lblTurnBaseDept.Size     = new System.Drawing.Size(84, 14);
            this.m_lblTurnBaseDept.Text     = "原转入科室:";
            //
            // m_lblTurnTime
            //
            this.m_lblTurnTime.Location = new System.Drawing.Point(440, 135);
            this.m_lblTurnTime.Text     = "转出时间:";
            //
            // lblTurnDiagnose
            //
            this.lblTurnDiagnose.Text = "转出诊断:";
            //
            // lblInDiagnoseCourse
            //
            this.lblInDiagnoseCourse.Location = new System.Drawing.Point(20, 219);
            //
            // m_txtInDiagnoseCourse
            //
            this.m_txtInDiagnoseCourse.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                      | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtInDiagnoseCourse.Location = new System.Drawing.Point(20, 241);
            this.m_txtInDiagnoseCourse.Size     = new System.Drawing.Size(749, 203);
            //
            // m_txtInDiagnose
            //
            this.m_txtInDiagnose.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtInDiagnose.Size = new System.Drawing.Size(673, 21);
            //
            // m_txtAnaesthesiaType
            //
            this.m_txtAnaesthesiaType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtAnaesthesiaType.Size = new System.Drawing.Size(673, 21);
            //
            // m_txtOperationName
            //
            this.m_txtOperationName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                   | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtOperationName.Size = new System.Drawing.Size(673, 21);
            //
            // m_txtTurnDiagnose
            //
            this.m_txtTurnDiagnose.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtTurnDiagnose.Size = new System.Drawing.Size(673, 56);
            //
            // m_dtpTurnTime
            //
            this.m_dtpTurnTime.Location = new System.Drawing.Point(516, 131);
            //
            // m_lblTurnInfo
            //
            this.m_lblTurnInfo.Location = new System.Drawing.Point(16, 446);
            this.m_lblTurnInfo.Text     = "转出情况";
            this.m_lblTurnInfo.Visible  = false;
            //
            // lblPupilDiameter2
            //
            this.lblPupilDiameter2.Location  = new System.Drawing.Point(188, 81);
            this.lblPupilDiameter2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            //
            // lblPupilDiameterUnit
            //
            this.lblPupilDiameterUnit.Location = new System.Drawing.Point(308, 81);
            //
            // lblPupilReflection1
            //
            this.lblPupilReflection1.Location  = new System.Drawing.Point(344, 81);
            this.lblPupilReflection1.Size      = new System.Drawing.Size(98, 14);
            this.lblPupilReflection1.Text      = "瞳孔光反射:右";
            this.lblPupilReflection1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            //
            // lblPupilReflection2
            //
            this.lblPupilReflection2.Location  = new System.Drawing.Point(564, 81);
            this.lblPupilReflection2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            //
            // lblPupilDiameter1
            //
            this.lblPupilDiameter1.Location  = new System.Drawing.Point(16, 81);
            this.lblPupilDiameter1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            //
            // lblGlasgow1
            //
            this.lblGlasgow1.Location = new System.Drawing.Point(16, 120);
            //
            // lblGlasgow2
            //
            this.lblGlasgow2.Location = new System.Drawing.Point(188, 120);
            //
            // lblGlasgow3
            //
            this.lblGlasgow3.Location = new System.Drawing.Point(332, 120);
            //
            // lblGlasgow4
            //
            this.lblGlasgow4.Location = new System.Drawing.Point(464, 120);
            //
            // lblGlasgow5
            //
            this.lblGlasgow5.Location = new System.Drawing.Point(576, 120);
            //
            // m_txtOther
            //
            this.m_txtOther.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtOther.Size = new System.Drawing.Size(756, 292);
            //
            // m_txtWoundInfo
            //
            this.m_txtWoundInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
            this.m_txtWoundInfo.Size = new System.Drawing.Size(764, 176);
            //
            // lblFromDeptDoctor
            //
            this.lblFromDeptDoctor.Location = new System.Drawing.Point(288, 564);
            this.lblFromDeptDoctor.Text     = "中心ICU医师";
            //
            // lblToDeptDoctor
            //
            this.lblToDeptDoctor.Location = new System.Drawing.Point(260, 591);
            this.lblToDeptDoctor.Text     = "接收科医师";
            //
            // m_lblTurnBaseDeptName
            //
            this.m_lblTurnBaseDeptName.Location = new System.Drawing.Point(100, 129);
            //
            // m_lblToDeptDoctor
            //
            this.m_lblToDeptDoctor.Location  = new System.Drawing.Point(396, 553);
            this.m_lblToDeptDoctor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // m_lblFromDeptDoctor
            //
            this.m_lblFromDeptDoctor.Location  = new System.Drawing.Point(317, 552);
            this.m_lblFromDeptDoctor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // m_trvTime
            //
            this.m_trvTime.LineColor = System.Drawing.Color.Black;
            this.m_trvTime.Visible   = true;
            //
            // m_trvLabCheckSendTime
            //
            this.m_trvLabCheckSendTime.LineColor = System.Drawing.Color.Black;
            //
            // tabControl1
            //
            this.tabControl1.Size = new System.Drawing.Size(789, 485);
            this.tabControl1.Controls.SetChildIndex(this.tabPage3, 0);
            this.tabControl1.Controls.SetChildIndex(this.tabPage2, 0);
            this.tabControl1.Controls.SetChildIndex(this.tabPage1, 0);
            //
            // tabPage1
            //
            this.tabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tabPage1.Size        = new System.Drawing.Size(789, 460);
            this.tabPage1.Text        = "转出情况";
            //
            // tabPage2
            //
            this.tabPage2.BackColor   = System.Drawing.SystemColors.Control;
            this.tabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tabPage2.Size        = new System.Drawing.Size(789, 460);
            //
            // tabPage3
            //
            this.tabPage3.BackColor   = System.Drawing.SystemColors.Control;
            this.tabPage3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tabPage3.Size        = new System.Drawing.Size(789, 460);
            //
            // m_cmdFromDoctor
            //
            this.m_cmdFromDoctor.Location = new System.Drawing.Point(571, 53);
            this.m_cmdFromDoctor.Text     = "中心ICU医师";
            //
            // txtFromDoctor
            //
            this.txtFromDoctor.Location = new System.Drawing.Point(679, 56);
            //
            // lblSex
            //
            this.lblSex.Location = new System.Drawing.Point(692, 105);
            //
            // lblAge
            //
            this.lblAge.Location = new System.Drawing.Point(764, 105);
            //
            // lblBedNoTitle
            //
            this.lblBedNoTitle.Location = new System.Drawing.Point(364, 105);
            //
            // lblInHospitalNoTitle
            //
            this.lblInHospitalNoTitle.Location = new System.Drawing.Point(-42, 147);
            //
            // lblNameTitle
            //
            this.lblNameTitle.Location = new System.Drawing.Point(516, 105);
            //
            // lblSexTitle
            //
            this.lblSexTitle.Location = new System.Drawing.Point(652, 105);
            //
            // lblAgeTitle
            //
            this.lblAgeTitle.Location = new System.Drawing.Point(720, 105);
            //
            // lblAreaTitle
            //
            this.lblAreaTitle.Location = new System.Drawing.Point(-16, 147);
            //
            // m_lsvInPatientID
            //
            this.m_lsvInPatientID.TabIndex = 6;
            //
            // txtInPatientID
            //
            this.txtInPatientID.TabIndex = 5;
            //
            // m_txtPatientName
            //
            this.m_txtPatientName.Location = new System.Drawing.Point(560, 101);
            this.m_txtPatientName.Size     = new System.Drawing.Size(80, 23);
            //
            // m_txtBedNO
            //
            this.m_txtBedNO.Visible = true;
            //
            // m_cboArea
            //
            this.m_cboArea.Location = new System.Drawing.Point(-28, 173);
            //
            // m_lsvBedNO
            //
            this.m_lsvBedNO.Location = new System.Drawing.Point(-46, 126);
            //
            // m_cmdNext
            //
            this.m_cmdNext.Visible = true;
            //
            // m_lblForTitle
            //
            this.m_lblForTitle.Text = "转 出 记 录 表";
            //
            // m_cmdModifyPatientInfo
            //
            this.m_cmdModifyPatientInfo.Location = new System.Drawing.Point(724, 37);
            //
            // m_ctlPatientInfo
            //
            this.m_ctlPatientInfo.Anchor                 = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
            this.m_ctlPatientInfo.Dock                   = System.Windows.Forms.DockStyle.Right;
            this.m_ctlPatientInfo.Location               = new System.Drawing.Point(194, 29);
            this.m_ctlPatientInfo.m_BlnIsShowAddres      = true;
            this.m_ctlPatientInfo.m_BlnIsShowPatientAge  = true;
            this.m_ctlPatientInfo.m_BlnIsShowPatientName = true;
            this.m_ctlPatientInfo.m_BlnIsShowSex         = true;
            this.m_ctlPatientInfo.Size                   = new System.Drawing.Size(595, 54);
            //
            // m_cboToDept
            //
            this.m_cboToDept.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(113)))), ((int)(((byte)(152)))));
            this.m_cboToDept.BorderColor         = System.Drawing.Color.White;
            this.m_cboToDept.DropButtonBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(113)))), ((int)(((byte)(152)))));
            this.m_cboToDept.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
            this.m_cboToDept.DropButtonForeColor = System.Drawing.Color.White;
            this.m_cboToDept.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.m_cboToDept.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.m_cboToDept.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.m_cboToDept.ForeColor                = System.Drawing.Color.White;
            this.m_cboToDept.ListBackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(113)))), ((int)(((byte)(152)))));
            this.m_cboToDept.ListForeColor            = System.Drawing.Color.White;
            this.m_cboToDept.ListSelectedBackColor    = System.Drawing.Color.Blue;
            this.m_cboToDept.ListSelectedForeColor    = System.Drawing.Color.White;
            this.m_cboToDept.Location                 = new System.Drawing.Point(115, 229);
            this.m_cboToDept.m_BlnEnableItemEventMenu = true;
            this.m_cboToDept.Name                     = "m_cboToDept";
            this.m_cboToDept.SelectedIndex            = -1;
            this.m_cboToDept.SelectedItem             = null;
            this.m_cboToDept.SelectionStart           = 0;
            this.m_cboToDept.Size                     = new System.Drawing.Size(148, 23);
            this.m_cboToDept.TabIndex                 = 210;
            this.m_cboToDept.TextBackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(113)))), ((int)(((byte)(152)))));
            this.m_cboToDept.TextForeColor            = System.Drawing.Color.White;
            //
            // frmPICUShiftOutForm
            //
            this.AccessibleDescription = "转出记录表";
            this.ClientSize            = new System.Drawing.Size(811, 673);
            this.Controls.Add(this.m_cboToDept);
            this.Name  = "frmPICUShiftOutForm";
            this.Text  = "转出记录表";
            this.Load += new System.EventHandler(this.frmPICUShiftOutForm_Load);
            this.Controls.SetChildIndex(this.lblInHospitalNoTitle, 0);
            this.Controls.SetChildIndex(this.lblAreaTitle, 0);
            this.Controls.SetChildIndex(this.m_cboArea, 0);
            this.Controls.SetChildIndex(this.m_lsvBedNO, 0);
            this.Controls.SetChildIndex(this.m_cboToDept, 0);
            this.Controls.SetChildIndex(this.lblFromDeptDoctor, 0);
            this.Controls.SetChildIndex(this.m_lblFromDeptDoctor, 0);
            this.Controls.SetChildIndex(this.m_lblToDeptDoctor, 0);
            this.Controls.SetChildIndex(this.lblToDeptDoctor, 0);
            this.Controls.SetChildIndex(this.m_trvLabCheckSendTime, 0);
            this.Controls.SetChildIndex(this.m_lblAddress, 0);
            this.Controls.SetChildIndex(this.lblAddress, 0);
            this.Controls.SetChildIndex(this.chkModifyWithoutMatk, 0);
            this.Controls.SetChildIndex(this.m_pnlNewBase, 0);
            this.Controls.SetChildIndex(this.m_lblForTitle, 0);
            this.Controls.SetChildIndex(this.txtInPatientID, 0);
            this.Controls.SetChildIndex(this.lblAgeTitle, 0);
            this.Controls.SetChildIndex(this.lblSexTitle, 0);
            this.Controls.SetChildIndex(this.lblNameTitle, 0);
            this.Controls.SetChildIndex(this.lblBedNoTitle, 0);
            this.Controls.SetChildIndex(this.m_lsvInPatientID, 0);
            this.Controls.SetChildIndex(this.lblAge, 0);
            this.Controls.SetChildIndex(this.m_txtPatientName, 0);
            this.Controls.SetChildIndex(this.m_txtBedNO, 0);
            this.Controls.SetChildIndex(this.m_lsvPatientName, 0);
            this.Controls.SetChildIndex(this.lblDept, 0);
            this.Controls.SetChildIndex(this.m_cboDept, 0);
            this.Controls.SetChildIndex(this.m_cmdNewTemplate, 0);
            this.Controls.SetChildIndex(this.m_cmdNext, 0);
            this.Controls.SetChildIndex(this.m_cmdPre, 0);
            this.Controls.SetChildIndex(this.lblSex, 0);
            this.Controls.SetChildIndex(this.m_cmdModifyPatientInfo, 0);
            this.Controls.SetChildIndex(this.tabControl1, 0);
            this.Controls.SetChildIndex(this.m_trvTime, 0);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            this.m_pnlNewBase.ResumeLayout(false);
            this.m_pnlNewBase.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Ejemplo n.º 8
0
        /// <summary>
        /// 模板内容赋值
        /// </summary>
        /// <param name="p_objTemplateSetContent">模板内容</param>
        /// <param name="p_intIndex">常用值插入点</param>
        /// <param name="p_intHash">需要从中间插入内容的RichTextBox的hashCode</param>
        public void m_mthLoadTemplateset(clsTemplatesetContentValue [] p_objTemplateSetContent, int p_intIndex, int p_intHash)
        {
            if (p_objTemplateSetContent == null || p_objTemplateSetContent.Length <= 0)
            {
                return;
            }

            #region 替换数据复用内容
            ArrayList arlTemp = new ArrayList();
            for (int i = 0; i < p_objTemplateSetContent.Length; i++)
            {
                arlTemp.Add(p_objTemplateSetContent[i].m_strContent);
            }
            string[] strContentArr = (string[])arlTemp.ToArray(typeof(string));
            com.digitalwave.Emr.Utility.DataShare.clsDataShareReplace.s_mthReplaceDataShareValue(MDIParent.s_ObjCurrentPatient, ref strContentArr);
            #endregion

            for (int i = 0; i < p_objTemplateSetContent.Length; i++)
            {
                for (int j = 0; j < m_intTemplateNumber; j++)
                {
                    Control txtBox     = m_objControlCollection[j];
                    string  strContent = strContentArr[i];
                    if (txtBox != null && p_objTemplateSetContent[i].m_strControl_ID == m_strControlIDCollection[j])
                    {
                        switch (txtBox.GetType().FullName)
                        {
                        case "System.Windows.Forms.RichTextBox":
                        case "iCare.CustomForm.ctlRichTextBox":
                            if (p_intIndex == -1)
                            {
                                txtBox.Text = strContent;
                            }
                            else
                            {
                                txtBox.Text = txtBox.Text.Replace("mb.", "");
                                if (txtBox.GetHashCode() == p_intHash)
                                {
                                    txtBox.Text = txtBox.Text.Insert(p_intIndex, strContent);
                                }
                                else
                                {
                                    txtBox.Text += strContent;
                                }
                            }
                            break;

                        case "com.digitalwave.Utility.Controls.ctlRichTextBox":
                            com.digitalwave.Utility.Controls.ctlRichTextBox ctlTxt = (com.digitalwave.Utility.Controls.ctlRichTextBox)txtBox;

                            int intMaxLength = ctlTxt.MaxLength;
                            if (strContent != null && strContent.Length > intMaxLength)
                            {
                                strContent = strContent.Substring(0, intMaxLength);
                            }
                            if (p_intIndex == -1)
                            {
                                //如果手术记录单的手术名称有内容,保持其内容不变
                                if (txtBox.FindForm().Name == "frmOperationRecordDoctor" && txtBox.Name == "m_txtOperationName" && txtBox.Text.Trim() != "")
                                {
                                    break;
                                }

                                //int intLength = ctlTxt.Text.Length;
                                ctlTxt.m_mthClearText();
                                ctlTxt.m_mthInsertText(strContent, 0);
                            }
                            else
                            {
                                ctlTxt.m_mthReplace("mb.", "");

                                if (txtBox.GetHashCode() == p_intHash)
                                {
                                    ctlTxt.m_mthInsertText(strContent, p_intIndex);
                                }
                                else
                                {
                                    int intLength = ctlTxt.Text.Length;
                                    ctlTxt.m_mthInsertText(strContent, intLength);
                                }
                            }
                            break;

                        case "com.digitalwave.controls.ctlRichTextBox":
                            com.digitalwave.controls.ctlRichTextBox ctlTxt2 = (com.digitalwave.controls.ctlRichTextBox)txtBox;

                            int intMaxLength2 = ctlTxt2.MaxLength;
                            if (strContent != null && strContent.Length > intMaxLength2)
                            {
                                strContent = strContent.Substring(0, intMaxLength2);
                            }
                            if (p_intIndex == -1)
                            {
                                //如果手术记录单的手术名称有内容,保持其内容不变
                                if (txtBox.FindForm().Name == "frmOperationRecordDoctor" && txtBox.Name == "m_txtOperationName" && txtBox.Text.Trim() != "")
                                {
                                    break;
                                }

                                //int intLength1 = ctlTxt2.Text.Length;
                                ctlTxt2.m_mthClearText();
                                ctlTxt2.m_mthInsertText(strContent, 0);
                            }
                            else
                            {
                                ctlTxt2.m_mthReplace("mb.", "");

                                if (txtBox.GetHashCode() == p_intHash)
                                {
                                    ctlTxt2.m_mthInsertText(strContent, p_intIndex);
                                }
                                else
                                {
                                    int intLength1 = ctlTxt2.Text.Length;
                                    ctlTxt2.m_mthInsertText(strContent, intLength1);
                                }
                            }
                            break;

                        case "com.digitalwave.Utility.Controls.ctlComboBox":
                            com.digitalwave.Utility.Controls.ctlComboBox ctlBox = txtBox as com.digitalwave.Utility.Controls.ctlComboBox;
                            ctlBox.Text = strContent;
                            break;

                        default:
                            txtBox.Text = strContent;
                            break;
                        }
                        break;
                    }
                }
            }

//			clsDataShareTool.s_mthSetDataShare(MDIParent.s_ObjCurrentPatient,m_objControlCollection);
        }
Ejemplo n.º 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dtpFromDate        = new com.digitalwave.Utility.Controls.ctlTimePicker();
     this.lblTo              = new System.Windows.Forms.Label();
     this.lblFrom            = new System.Windows.Forms.Label();
     this.columnHeader2      = new System.Windows.Forms.ColumnHeader();
     this.m_txtRemark        = new com.digitalwave.Utility.Controls.ctlBorderTextBox();
     this.mniAuto            = new System.Windows.Forms.MenuItem();
     this.m_cmdPrint         = new System.Windows.Forms.Button();
     this.columnHeader5      = new System.Windows.Forms.ColumnHeader();
     this.dtpToDate          = new com.digitalwave.Utility.Controls.ctlTimePicker();
     this.lblCurrentDate     = new System.Windows.Forms.Label();
     this.m_cboDutyType      = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.lblDutyType        = new System.Windows.Forms.Label();
     this.lblRemark          = new System.Windows.Forms.Label();
     this.m_mcdMain          = new System.Windows.Forms.MonthCalendar();
     this.ctmAssign          = new System.Windows.Forms.ContextMenu();
     this.m_lsvOnDutyEmpList = new System.Windows.Forms.ListView();
     this.columnHeader1      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4      = new System.Windows.Forms.ColumnHeader();
     this.lbltitle           = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.ctlComboBox1       = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.m_lsvAllEmpList    = new System.Windows.Forms.ListView();
     this.columnHeader8      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7      = new System.Windows.Forms.ColumnHeader();
     this.m_cmdSave          = new System.Windows.Forms.Button();
     this.m_cmdCancel        = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // dtpFromDate
     //
     this.dtpFromDate.BorderColor         = System.Drawing.Color.White;
     this.dtpFromDate.CustomFormat        = "yyyy年MM月dd日";
     this.dtpFromDate.DropButtonBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.dtpFromDate.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.dtpFromDate.DropButtonForeColor = System.Drawing.Color.White;
     this.dtpFromDate.flatFont            = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.dtpFromDate.Font          = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.dtpFromDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpFromDate.Location      = new System.Drawing.Point(448, 416);
     this.dtpFromDate.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtpFromDate.MinDate       = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.dtpFromDate.Name          = "dtpFromDate";
     this.dtpFromDate.Size          = new System.Drawing.Size(132, 26);
     this.dtpFromDate.TabIndex      = 467;
     this.dtpFromDate.TextBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.dtpFromDate.TextForeColor = System.Drawing.Color.White;
     //
     // lblTo
     //
     this.lblTo.ForeColor = System.Drawing.Color.White;
     this.lblTo.Location  = new System.Drawing.Point(420, 464);
     this.lblTo.Name      = "lblTo";
     this.lblTo.Size      = new System.Drawing.Size(24, 23);
     this.lblTo.TabIndex  = 470;
     this.lblTo.Text      = "到";
     //
     // lblFrom
     //
     this.lblFrom.ForeColor = System.Drawing.Color.White;
     this.lblFrom.Location  = new System.Drawing.Point(420, 416);
     this.lblFrom.Name      = "lblFrom";
     this.lblFrom.Size      = new System.Drawing.Size(24, 23);
     this.lblFrom.TabIndex  = 469;
     this.lblFrom.Text      = "从";
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "员工姓名";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 100;
     //
     // m_txtRemark
     //
     this.m_txtRemark.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_txtRemark.BorderColor = System.Drawing.Color.White;
     this.m_txtRemark.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_txtRemark.Font        = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtRemark.ForeColor   = System.Drawing.Color.White;
     this.m_txtRemark.Location    = new System.Drawing.Point(428, 260);
     this.m_txtRemark.Name        = "m_txtRemark";
     this.m_txtRemark.Size        = new System.Drawing.Size(144, 26);
     this.m_txtRemark.TabIndex    = 456;
     this.m_txtRemark.Text        = "";
     //
     // mniAuto
     //
     this.mniAuto.Index = 0;
     this.mniAuto.Text  = "安排人员";
     //
     // m_cmdPrint
     //
     this.m_cmdPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_cmdPrint.Location  = new System.Drawing.Point(424, 508);
     this.m_cmdPrint.Name      = "m_cmdPrint";
     this.m_cmdPrint.Size      = new System.Drawing.Size(156, 32);
     this.m_cmdPrint.TabIndex  = 471;
     this.m_cmdPrint.Text      = "列印班表";
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "备注";
     this.columnHeader5.Width = 100;
     //
     // dtpToDate
     //
     this.dtpToDate.BorderColor         = System.Drawing.Color.White;
     this.dtpToDate.CustomFormat        = "yyyy年MM月dd日";
     this.dtpToDate.DropButtonBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.dtpToDate.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.dtpToDate.DropButtonForeColor = System.Drawing.Color.White;
     this.dtpToDate.flatFont            = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.dtpToDate.Font          = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.dtpToDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpToDate.Location      = new System.Drawing.Point(448, 460);
     this.dtpToDate.MaxDate       = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtpToDate.MinDate       = new System.DateTime(1753, 1, 1, 0, 0, 0, 0);
     this.dtpToDate.Name          = "dtpToDate";
     this.dtpToDate.Size          = new System.Drawing.Size(132, 26);
     this.dtpToDate.TabIndex      = 468;
     this.dtpToDate.TextBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.dtpToDate.TextForeColor = System.Drawing.Color.White;
     //
     // lblCurrentDate
     //
     this.lblCurrentDate.ForeColor = System.Drawing.Color.White;
     this.lblCurrentDate.Location  = new System.Drawing.Point(592, 256);
     this.lblCurrentDate.Name      = "lblCurrentDate";
     this.lblCurrentDate.Size      = new System.Drawing.Size(356, 23);
     this.lblCurrentDate.TabIndex  = 466;
     //
     // m_cboDutyType
     //
     this.m_cboDutyType.BackColor           = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_cboDutyType.BorderColor         = System.Drawing.Color.White;
     this.m_cboDutyType.DropButtonBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_cboDutyType.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboDutyType.DropButtonForeColor = System.Drawing.Color.White;
     this.m_cboDutyType.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboDutyType.flatFont            = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDutyType.Font                  = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDutyType.ForeColor             = System.Drawing.Color.White;
     this.m_cboDutyType.ListBackColor         = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_cboDutyType.ListForeColor         = System.Drawing.Color.White;
     this.m_cboDutyType.ListSelectedBackColor = System.Drawing.Color.Blue;
     this.m_cboDutyType.ListSelectedForeColor = System.Drawing.Color.White;
     this.m_cboDutyType.Location              = new System.Drawing.Point(428, 192);
     this.m_cboDutyType.Name                  = "m_cboDutyType";
     this.m_cboDutyType.SelectedIndex         = -1;
     this.m_cboDutyType.SelectedItem          = null;
     this.m_cboDutyType.Size                  = new System.Drawing.Size(144, 26);
     this.m_cboDutyType.TabIndex              = 465;
     this.m_cboDutyType.TextBackColor         = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_cboDutyType.TextForeColor         = System.Drawing.Color.White;
     //
     // lblDutyType
     //
     this.lblDutyType.AutoSize  = true;
     this.lblDutyType.ForeColor = System.Drawing.Color.White;
     this.lblDutyType.Location  = new System.Drawing.Point(428, 164);
     this.lblDutyType.Name      = "lblDutyType";
     this.lblDutyType.Size      = new System.Drawing.Size(55, 19);
     this.lblDutyType.TabIndex  = 464;
     this.lblDutyType.Text      = "班次:";
     //
     // lblRemark
     //
     this.lblRemark.AutoSize  = true;
     this.lblRemark.ForeColor = System.Drawing.Color.White;
     this.lblRemark.Location  = new System.Drawing.Point(428, 232);
     this.lblRemark.Name      = "lblRemark";
     this.lblRemark.Size      = new System.Drawing.Size(55, 19);
     this.lblRemark.TabIndex  = 461;
     this.lblRemark.Text      = "备注:";
     //
     // m_mcdMain
     //
     this.m_mcdMain.Location = new System.Drawing.Point(588, 64);
     this.m_mcdMain.Name     = "m_mcdMain";
     this.m_mcdMain.TabIndex = 453;
     //
     // ctmAssign
     //
     this.ctmAssign.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mniAuto
     });
     //
     // m_lsvOnDutyEmpList
     //
     this.m_lsvOnDutyEmpList.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_lsvOnDutyEmpList.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_lsvOnDutyEmpList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader4,
         this.columnHeader5
     });
     this.m_lsvOnDutyEmpList.ContextMenu   = this.ctmAssign;
     this.m_lsvOnDutyEmpList.Font          = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lsvOnDutyEmpList.ForeColor     = System.Drawing.Color.White;
     this.m_lsvOnDutyEmpList.FullRowSelect = true;
     this.m_lsvOnDutyEmpList.GridLines     = true;
     this.m_lsvOnDutyEmpList.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.m_lsvOnDutyEmpList.Location      = new System.Drawing.Point(592, 288);
     this.m_lsvOnDutyEmpList.Name          = "m_lsvOnDutyEmpList";
     this.m_lsvOnDutyEmpList.Size          = new System.Drawing.Size(392, 348);
     this.m_lsvOnDutyEmpList.TabIndex      = 451;
     this.m_lsvOnDutyEmpList.View          = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = " 员工工号";
     this.columnHeader1.Width = 90;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "   班次";
     this.columnHeader4.Width = 100;
     //
     // lbltitle
     //
     this.lbltitle.AutoSize  = true;
     this.lbltitle.Font      = new System.Drawing.Font("SimSun", 26.25F);
     this.lbltitle.ForeColor = System.Drawing.Color.White;
     this.lbltitle.Location  = new System.Drawing.Point(360, 16);
     this.lbltitle.Name      = "lbltitle";
     this.lbltitle.Size      = new System.Drawing.Size(319, 40);
     this.lbltitle.TabIndex  = 452;
     this.lbltitle.Text      = "人 员 工 作 安 排";
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(32, 72);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 19);
     this.label1.TabIndex  = 473;
     this.label1.Text      = "科室类别:";
     //
     // ctlComboBox1
     //
     this.ctlComboBox1.BackColor           = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.ctlComboBox1.BorderColor         = System.Drawing.Color.White;
     this.ctlComboBox1.DropButtonBackColor = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.ctlComboBox1.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.ctlComboBox1.DropButtonForeColor = System.Drawing.Color.White;
     this.ctlComboBox1.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ctlComboBox1.flatFont            = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.ctlComboBox1.Font                  = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.ctlComboBox1.ForeColor             = System.Drawing.Color.White;
     this.ctlComboBox1.ListBackColor         = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.ctlComboBox1.ListForeColor         = System.Drawing.Color.White;
     this.ctlComboBox1.ListSelectedBackColor = System.Drawing.Color.Blue;
     this.ctlComboBox1.ListSelectedForeColor = System.Drawing.Color.White;
     this.ctlComboBox1.Location              = new System.Drawing.Point(108, 68);
     this.ctlComboBox1.Name                  = "ctlComboBox1";
     this.ctlComboBox1.SelectedIndex         = -1;
     this.ctlComboBox1.SelectedItem          = null;
     this.ctlComboBox1.Size                  = new System.Drawing.Size(176, 26);
     this.ctlComboBox1.TabIndex              = 474;
     this.ctlComboBox1.TextBackColor         = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.ctlComboBox1.TextForeColor         = System.Drawing.Color.White;
     //
     // m_lsvAllEmpList
     //
     this.m_lsvAllEmpList.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(52)), ((System.Byte)(113)), ((System.Byte)(152)));
     this.m_lsvAllEmpList.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_lsvAllEmpList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader8,
         this.columnHeader3,
         this.columnHeader6,
         this.columnHeader7
     });
     this.m_lsvAllEmpList.Font          = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_lsvAllEmpList.ForeColor     = System.Drawing.Color.White;
     this.m_lsvAllEmpList.FullRowSelect = true;
     this.m_lsvAllEmpList.GridLines     = true;
     this.m_lsvAllEmpList.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.m_lsvAllEmpList.Location      = new System.Drawing.Point(32, 100);
     this.m_lsvAllEmpList.Name          = "m_lsvAllEmpList";
     this.m_lsvAllEmpList.Size          = new System.Drawing.Size(382, 536);
     this.m_lsvAllEmpList.TabIndex      = 477;
     this.m_lsvAllEmpList.View          = System.Windows.Forms.View.Details;
     //
     // columnHeader8
     //
     this.columnHeader8.Text  = "序号";
     this.columnHeader8.Width = 50;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "员工工号";
     this.columnHeader3.Width = 80;
     //
     // columnHeader6
     //
     this.columnHeader6.Text      = "员工姓名";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader6.Width     = 100;
     //
     // columnHeader7
     //
     this.columnHeader7.Text  = "职称";
     this.columnHeader7.Width = 150;
     //
     // m_cmdSave
     //
     this.m_cmdSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_cmdSave.Location  = new System.Drawing.Point(460, 324);
     this.m_cmdSave.Name      = "m_cmdSave";
     this.m_cmdSave.Size      = new System.Drawing.Size(94, 32);
     this.m_cmdSave.TabIndex  = 478;
     this.m_cmdSave.Text      = ">>>";
     this.m_cmdSave.Click    += new System.EventHandler(this.m_cmdSave_Click);
     //
     // m_cmdCancel
     //
     this.m_cmdCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_cmdCancel.Location  = new System.Drawing.Point(460, 372);
     this.m_cmdCancel.Name      = "m_cmdCancel";
     this.m_cmdCancel.Size      = new System.Drawing.Size(94, 32);
     this.m_cmdCancel.TabIndex  = 479;
     this.m_cmdCancel.Text      = "<<<";
     //
     // frmDutyArrange
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 19);
     this.ClientSize        = new System.Drawing.Size(1016, 733);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_cmdCancel,
         this.m_cmdSave,
         this.m_lsvAllEmpList,
         this.ctlComboBox1,
         this.label1,
         this.lblTo,
         this.lblFrom,
         this.m_txtRemark,
         this.m_cmdPrint,
         this.dtpToDate,
         this.lblCurrentDate,
         this.m_cboDutyType,
         this.lblDutyType,
         this.lblRemark,
         this.m_mcdMain,
         this.lbltitle,
         this.dtpFromDate,
         this.m_lsvOnDutyEmpList
     });
     this.Name        = "frmDutyArrange";
     this.Text        = "人员工作安排";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.frmDutyArrange_Load);
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmAddBlankInDiseaseTrack));
     this.m_lblDescribe  = new System.Windows.Forms.Label();
     this.m_cmdOK        = new PinkieControls.ButtonXP();
     this.m_cmdCancel    = new PinkieControls.ButtonXP();
     this.m_cboLineCount = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.SuspendLayout();
     //
     // m_lblDescribe
     //
     this.m_lblDescribe.Location = new System.Drawing.Point(20, 12);
     this.m_lblDescribe.Name     = "m_lblDescribe";
     this.m_lblDescribe.Size     = new System.Drawing.Size(332, 80);
     this.m_lblDescribe.TabIndex = 0;
     //
     // m_cmdOK
     //
     this.m_cmdOK.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdOK.DefaultScheme = true;
     this.m_cmdOK.DialogResult  = System.Windows.Forms.DialogResult.OK;
     this.m_cmdOK.Font          = new System.Drawing.Font("宋体", 10.5F);
     this.m_cmdOK.Hint          = "";
     this.m_cmdOK.Location      = new System.Drawing.Point(180, 103);
     this.m_cmdOK.Name          = "m_cmdOK";
     this.m_cmdOK.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdOK.Size          = new System.Drawing.Size(75, 28);
     this.m_cmdOK.TabIndex      = 1;
     this.m_cmdOK.Text          = "确  定";
     this.m_cmdOK.Click        += new System.EventHandler(this.m_cmdOK_Click);
     //
     // m_cmdCancel
     //
     this.m_cmdCancel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdCancel.DefaultScheme = true;
     this.m_cmdCancel.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_cmdCancel.Font          = new System.Drawing.Font("宋体", 10.5F);
     this.m_cmdCancel.Hint          = "";
     this.m_cmdCancel.Location      = new System.Drawing.Point(276, 103);
     this.m_cmdCancel.Name          = "m_cmdCancel";
     this.m_cmdCancel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdCancel.Size          = new System.Drawing.Size(75, 28);
     this.m_cmdCancel.TabIndex      = 1;
     this.m_cmdCancel.Text          = "取  消";
     this.m_cmdCancel.Click        += new System.EventHandler(this.m_cmdOK_Click);
     //
     // m_cboLineCount
     //
     this.m_cboLineCount.AccessibleDescription = "";
     this.m_cboLineCount.BackColor             = System.Drawing.SystemColors.Control;
     this.m_cboLineCount.BorderColor           = System.Drawing.Color.Black;
     this.m_cboLineCount.DropButtonBackColor   = System.Drawing.SystemColors.ScrollBar;
     this.m_cboLineCount.DropButtonCursor      = System.Windows.Forms.Cursors.Hand;
     this.m_cboLineCount.DropButtonForeColor   = System.Drawing.Color.Black;
     this.m_cboLineCount.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.m_cboLineCount.flatFont                 = new System.Drawing.Font("宋体", 10.5F);
     this.m_cboLineCount.Font                     = new System.Drawing.Font("宋体", 10.5F);
     this.m_cboLineCount.ForeColor                = System.Drawing.Color.White;
     this.m_cboLineCount.ListBackColor            = System.Drawing.Color.White;
     this.m_cboLineCount.ListForeColor            = System.Drawing.Color.Black;
     this.m_cboLineCount.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboLineCount.ListSelectedForeColor    = System.Drawing.Color.White;
     this.m_cboLineCount.Location                 = new System.Drawing.Point(16, 104);
     this.m_cboLineCount.m_BlnEnableItemEventMenu = true;
     this.m_cboLineCount.Name                     = "m_cboLineCount";
     this.m_cboLineCount.SelectedIndex            = -1;
     this.m_cboLineCount.SelectedItem             = null;
     this.m_cboLineCount.Size                     = new System.Drawing.Size(132, 23);
     this.m_cboLineCount.TabIndex                 = 112;
     this.m_cboLineCount.TextBackColor            = System.Drawing.Color.White;
     this.m_cboLineCount.TextForeColor            = System.Drawing.Color.Black;
     this.m_cboLineCount.DropDown                += new System.EventHandler(this.m_cboLineCount_DropDown);
     this.m_cboLineCount.TextChanged             += new System.EventHandler(this.m_cboLineCount_TextChanged);
     this.m_cboLineCount.SelectedValueChanged    += new System.EventHandler(this.m_cboLineCount_TextChanged);
     //
     // frmAddBlankInDiseaseTrack
     //
     this.AcceptButton      = this.m_cmdOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.CancelButton      = this.m_cmdCancel;
     this.ClientSize        = new System.Drawing.Size(366, 147);
     this.Controls.Add(this.m_cboLineCount);
     this.Controls.Add(this.m_cmdOK);
     this.Controls.Add(this.m_lblDescribe);
     this.Controls.Add(this.m_cmdCancel);
     this.Font            = new System.Drawing.Font("宋体", 10.5F);
     this.ForeColor       = System.Drawing.Color.Black;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAddBlankInDiseaseTrack";
     this.Text            = "空白行插入";
     this.TopMost         = true;
     this.ResumeLayout(false);
 }
Ejemplo n.º 11
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRowlAndUser));
     this.panel2        = new System.Windows.Forms.Panel();
     this.m_cboDept     = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.label1        = new System.Windows.Forms.Label();
     this.m_lsvUser     = new System.Windows.Forms.ListView();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.m_lsvRole     = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.m_cmdEdit     = new PinkieControls.ButtonXP();
     this.m_cmdAdd      = new PinkieControls.ButtonXP();
     this.m_cmdDel      = new PinkieControls.ButtonXP();
     this.m_cmdCancel   = new PinkieControls.ButtonXP();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.m_cmdOK       = new PinkieControls.ButtonXP();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel2
     //
     this.panel2.Controls.Add(this.m_cboDept);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.m_lsvUser);
     this.panel2.Controls.Add(this.m_lsvRole);
     this.panel2.Controls.Add(this.m_cmdEdit);
     this.panel2.Controls.Add(this.m_cmdAdd);
     this.panel2.Controls.Add(this.m_cmdDel);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(544, 340);
     this.panel2.TabIndex = 0;
     //
     // m_cboDept
     //
     this.m_cboDept.AccessibleName      = "NoDefault";
     this.m_cboDept.BackColor           = System.Drawing.Color.White;
     this.m_cboDept.BorderColor         = System.Drawing.Color.Black;
     this.m_cboDept.DropButtonBackColor = System.Drawing.SystemColors.ControlLight;
     this.m_cboDept.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboDept.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboDept.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboDept.flatFont            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDept.Font                     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboDept.ForeColor                = System.Drawing.Color.Black;
     this.m_cboDept.ListBackColor            = System.Drawing.SystemColors.ControlLight;
     this.m_cboDept.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboDept.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboDept.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboDept.Location                 = new System.Drawing.Point(56, 10);
     this.m_cboDept.m_BlnEnableItemEventMenu = false;
     this.m_cboDept.Name                     = "m_cboDept";
     this.m_cboDept.SelectedIndex            = -1;
     this.m_cboDept.SelectedItem             = null;
     this.m_cboDept.Size                     = new System.Drawing.Size(208, 23);
     this.m_cboDept.TabIndex                 = 10000006;
     this.m_cboDept.TabStop                  = false;
     this.m_cboDept.TextBackColor            = System.Drawing.Color.White;
     this.m_cboDept.TextForeColor            = System.Drawing.Color.Black;
     this.m_cboDept.SelectedIndexChanged    += new System.EventHandler(this.m_cboDept_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(41, 19);
     this.label1.TabIndex = 10000005;
     this.label1.Text     = "科室:";
     //
     // m_lsvUser
     //
     this.m_lsvUser.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader2,
         this.columnHeader3
     });
     this.m_lsvUser.FullRowSelect         = true;
     this.m_lsvUser.GridLines             = true;
     this.m_lsvUser.HideSelection         = false;
     this.m_lsvUser.Location              = new System.Drawing.Point(8, 40);
     this.m_lsvUser.Name                  = "m_lsvUser";
     this.m_lsvUser.Size                  = new System.Drawing.Size(256, 288);
     this.m_lsvUser.TabIndex              = 10000004;
     this.m_lsvUser.View                  = System.Windows.Forms.View.Details;
     this.m_lsvUser.SelectedIndexChanged += new System.EventHandler(this.m_lsvUser_SelectedIndexChanged);
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "员工编号";
     this.columnHeader2.Width = 0;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "员工姓名";
     this.columnHeader3.Width = 251;
     //
     // m_lsvRole
     //
     this.m_lsvRole.CheckBoxes = true;
     this.m_lsvRole.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1
     });
     this.m_lsvRole.FullRowSelect = true;
     this.m_lsvRole.GridLines     = true;
     this.m_lsvRole.HideSelection = false;
     this.m_lsvRole.Location      = new System.Drawing.Point(280, 40);
     this.m_lsvRole.MultiSelect   = false;
     this.m_lsvRole.Name          = "m_lsvRole";
     this.m_lsvRole.Size          = new System.Drawing.Size(256, 248);
     this.m_lsvRole.TabIndex      = 0;
     this.m_lsvRole.View          = System.Windows.Forms.View.Details;
     this.m_lsvRole.ItemCheck    += new System.Windows.Forms.ItemCheckEventHandler(this.m_lsvRole_ItemCheck);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "角色名称";
     this.columnHeader1.Width = 252;
     //
     // m_cmdEdit
     //
     this.m_cmdEdit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdEdit.DefaultScheme = true;
     this.m_cmdEdit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdEdit.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdEdit.Hint          = "";
     this.m_cmdEdit.Location      = new System.Drawing.Point(372, 296);
     this.m_cmdEdit.Name          = "m_cmdEdit";
     this.m_cmdEdit.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdEdit.Size          = new System.Drawing.Size(76, 32);
     this.m_cmdEdit.TabIndex      = 10000003;
     this.m_cmdEdit.Text          = "修改角色";
     this.m_cmdEdit.Click        += new System.EventHandler(this.m_cmdEdit_Click);
     //
     // m_cmdAdd
     //
     this.m_cmdAdd.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdAdd.DefaultScheme = true;
     this.m_cmdAdd.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdAdd.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdAdd.Hint          = "";
     this.m_cmdAdd.Location      = new System.Drawing.Point(280, 296);
     this.m_cmdAdd.Name          = "m_cmdAdd";
     this.m_cmdAdd.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdAdd.Size          = new System.Drawing.Size(76, 32);
     this.m_cmdAdd.TabIndex      = 10000003;
     this.m_cmdAdd.Text          = "新建角色";
     this.m_cmdAdd.Click        += new System.EventHandler(this.m_cmdAdd_Click);
     //
     // m_cmdDel
     //
     this.m_cmdDel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdDel.DefaultScheme = true;
     this.m_cmdDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdDel.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdDel.Hint          = "";
     this.m_cmdDel.Location      = new System.Drawing.Point(460, 296);
     this.m_cmdDel.Name          = "m_cmdDel";
     this.m_cmdDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdDel.Size          = new System.Drawing.Size(76, 32);
     this.m_cmdDel.TabIndex      = 10000003;
     this.m_cmdDel.Text          = "删除角色";
     this.m_cmdDel.Click        += new System.EventHandler(this.m_cmdDel_Click);
     //
     // m_cmdCancel
     //
     this.m_cmdCancel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdCancel.DefaultScheme = true;
     this.m_cmdCancel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdCancel.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdCancel.Hint          = "";
     this.m_cmdCancel.Location      = new System.Drawing.Point(452, 352);
     this.m_cmdCancel.Name          = "m_cmdCancel";
     this.m_cmdCancel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdCancel.Size          = new System.Drawing.Size(80, 32);
     this.m_cmdCancel.TabIndex      = 10000002;
     this.m_cmdCancel.Text          = "取消";
     this.m_cmdCancel.Click        += new System.EventHandler(this.m_cmdCancel_Click);
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(0, 340);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(668, 4);
     this.groupBox1.TabIndex = 10000003;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "groupBox1";
     //
     // m_cmdOK
     //
     this.m_cmdOK.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdOK.DefaultScheme = true;
     this.m_cmdOK.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdOK.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdOK.Hint          = "";
     this.m_cmdOK.Location      = new System.Drawing.Point(360, 352);
     this.m_cmdOK.Name          = "m_cmdOK";
     this.m_cmdOK.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdOK.Size          = new System.Drawing.Size(80, 32);
     this.m_cmdOK.TabIndex      = 10000002;
     this.m_cmdOK.Text          = "确定";
     this.m_cmdOK.Click        += new System.EventHandler(this.m_cmdOK_Click);
     //
     // frmRowlAndUser
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(544, 389);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.m_cmdCancel);
     this.Controls.Add(this.m_cmdOK);
     this.Controls.Add(this.panel2);
     this.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmRowlAndUser";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "用户与角色";
     this.Load         += new System.EventHandler(this.frmRowlAndUser_Load);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_cboUser   = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.m_txtPW     = new com.digitalwave.Utility.Controls.ctlBorderTextBox();
     this.m_cmdOK     = new PinkieControls.ButtonXP();
     this.m_cmdCancel = new PinkieControls.ButtonXP();
     this.m_cboUser1  = new com.digitalwave.Utility.Controls.ctlComboBox();
     this.SuspendLayout();
     //
     // m_cboUser
     //
     this.m_cboUser.AccessibleName      = "NoDefault";
     this.m_cboUser.BackColor           = System.Drawing.Color.FromArgb(((System.Byte)(202)), ((System.Byte)(229)), ((System.Byte)(232)));
     this.m_cboUser.BorderColor         = System.Drawing.Color.Black;
     this.m_cboUser.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_cboUser.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboUser.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboUser.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboUser.flatFont            = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboUser.Font                     = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboUser.ForeColor                = System.Drawing.Color.Black;
     this.m_cboUser.ListBackColor            = System.Drawing.Color.White;
     this.m_cboUser.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboUser.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboUser.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboUser.Location                 = new System.Drawing.Point(111, 26);
     this.m_cboUser.m_BlnEnableItemEventMenu = false;
     this.m_cboUser.Name                     = "m_cboUser";
     this.m_cboUser.SelectedIndex            = -1;
     this.m_cboUser.SelectedItem             = null;
     this.m_cboUser.SelectionStart           = 0;
     this.m_cboUser.Size                     = new System.Drawing.Size(180, 26);
     this.m_cboUser.TabIndex                 = 10000000;
     this.m_cboUser.TabStop                  = false;
     this.m_cboUser.TextBackColor            = System.Drawing.Color.White;
     this.m_cboUser.TextForeColor            = System.Drawing.Color.Black;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(24, 30);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 22);
     this.label1.TabIndex = 10000001;
     this.label1.Text     = "主任医师";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(24, 70);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(39, 22);
     this.label2.TabIndex = 10000001;
     this.label2.Text     = "密码";
     //
     // m_txtPW
     //
     this.m_txtPW.AccessibleName = "NoDefault";
     this.m_txtPW.AutoSize       = false;
     this.m_txtPW.BackColor      = System.Drawing.SystemColors.Window;
     this.m_txtPW.BorderColor    = System.Drawing.Color.White;
     this.m_txtPW.Font           = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_txtPW.ForeColor      = System.Drawing.Color.Black;
     this.m_txtPW.Location       = new System.Drawing.Point(111, 67);
     this.m_txtPW.Name           = "m_txtPW";
     this.m_txtPW.PasswordChar   = '*';
     this.m_txtPW.Size           = new System.Drawing.Size(180, 21);
     this.m_txtPW.TabIndex       = 10000002;
     this.m_txtPW.Text           = "";
     //
     // m_cmdOK
     //
     this.m_cmdOK.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdOK.DefaultScheme = true;
     this.m_cmdOK.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_cmdOK.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdOK.Hint          = "";
     this.m_cmdOK.Location      = new System.Drawing.Point(136, 104);
     this.m_cmdOK.Name          = "m_cmdOK";
     this.m_cmdOK.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdOK.Size          = new System.Drawing.Size(64, 32);
     this.m_cmdOK.TabIndex      = 10000004;
     this.m_cmdOK.Text          = "确定";
     this.m_cmdOK.Click        += new System.EventHandler(this.m_cmdOK_Click);
     //
     // m_cmdCancel
     //
     this.m_cmdCancel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(212)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_cmdCancel.DefaultScheme = true;
     this.m_cmdCancel.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_cmdCancel.ForeColor     = System.Drawing.Color.Black;
     this.m_cmdCancel.Hint          = "";
     this.m_cmdCancel.Location      = new System.Drawing.Point(216, 104);
     this.m_cmdCancel.Name          = "m_cmdCancel";
     this.m_cmdCancel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_cmdCancel.Size          = new System.Drawing.Size(64, 32);
     this.m_cmdCancel.TabIndex      = 10000005;
     this.m_cmdCancel.Text          = "取消";
     this.m_cmdCancel.Click        += new System.EventHandler(this.m_cmdCancel_Click);
     //
     // m_cboUser1
     //
     this.m_cboUser1.AccessibleName      = "NoDefault";
     this.m_cboUser1.BackColor           = System.Drawing.Color.FromArgb(((System.Byte)(202)), ((System.Byte)(229)), ((System.Byte)(232)));
     this.m_cboUser1.BorderColor         = System.Drawing.Color.Black;
     this.m_cboUser1.DropButtonBackColor = System.Drawing.SystemColors.Control;
     this.m_cboUser1.DropButtonCursor    = System.Windows.Forms.Cursors.Hand;
     this.m_cboUser1.DropButtonForeColor = System.Drawing.Color.Black;
     this.m_cboUser1.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboUser1.flatFont            = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboUser1.Font                     = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.m_cboUser1.ForeColor                = System.Drawing.Color.Black;
     this.m_cboUser1.ListBackColor            = System.Drawing.Color.White;
     this.m_cboUser1.ListForeColor            = System.Drawing.SystemColors.WindowText;
     this.m_cboUser1.ListSelectedBackColor    = System.Drawing.SystemColors.Highlight;
     this.m_cboUser1.ListSelectedForeColor    = System.Drawing.SystemColors.HighlightText;
     this.m_cboUser1.Location                 = new System.Drawing.Point(112, 0);
     this.m_cboUser1.m_BlnEnableItemEventMenu = false;
     this.m_cboUser1.Name                     = "m_cboUser1";
     this.m_cboUser1.SelectedIndex            = -1;
     this.m_cboUser1.SelectedItem             = null;
     this.m_cboUser1.SelectionStart           = 0;
     this.m_cboUser1.Size                     = new System.Drawing.Size(180, 26);
     this.m_cboUser1.TabIndex                 = 10000000;
     this.m_cboUser1.TabStop                  = false;
     this.m_cboUser1.TextBackColor            = System.Drawing.Color.White;
     this.m_cboUser1.TextForeColor            = System.Drawing.Color.Black;
     this.m_cboUser1.Visible                  = false;
     //
     // frmValidateDirector
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 19);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(314, 159);
     this.Controls.Add(this.m_cmdCancel);
     this.Controls.Add(this.m_cmdOK);
     this.Controls.Add(this.m_txtPW);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.m_cboUser);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.m_cboUser1);
     this.Font            = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ForeColor       = System.Drawing.SystemColors.WindowText;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmValidateDirector";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "主任医师验证";
     this.Load           += new System.EventHandler(this.frmValidateDirector_Load);
     this.ResumeLayout(false);
 }