144 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace AIMS.OperationAanesthesia
 | |
| {
 | |
|     partial class frmPhysioDataUpdateLog
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Required designer variable.
 | |
|         /// </summary>
 | |
|         private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Clean up any resources being used.
 | |
|         /// </summary>
 | |
|         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
|         protected override void Dispose(bool disposing)
 | |
|         {
 | |
|             if (disposing && (components != null))
 | |
|             {
 | |
|                 components.Dispose();
 | |
|             }
 | |
|             base.Dispose(disposing);
 | |
|         }
 | |
| 
 | |
|         #region Windows Form 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()
 | |
|         {
 | |
|             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPhysioDataUpdateLog));
 | |
|             this.dgvLog = new System.Windows.Forms.DataGridView();
 | |
|             this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.log = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.work = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.time = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).BeginInit();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // dgvLog
 | |
|             // 
 | |
|             this.dgvLog.AllowUserToAddRows = false;
 | |
|             this.dgvLog.AllowUserToDeleteRows = false;
 | |
|             this.dgvLog.BackgroundColor = System.Drawing.Color.White;
 | |
|             this.dgvLog.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 | |
|             this.dgvLog.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
 | |
|             this.Id,
 | |
|             this.log,
 | |
|             this.work,
 | |
|             this.time});
 | |
|             this.dgvLog.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.dgvLog.Location = new System.Drawing.Point(0, 0);
 | |
|             this.dgvLog.Name = "dgvLog";
 | |
|             this.dgvLog.ReadOnly = true;
 | |
|             this.dgvLog.RowTemplate.Height = 23;
 | |
|             this.dgvLog.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
 | |
|             this.dgvLog.Size = new System.Drawing.Size(804, 729);
 | |
|             this.dgvLog.TabIndex = 0;
 | |
|             // 
 | |
|             // Id
 | |
|             // 
 | |
|             this.Id.HeaderText = "Id";
 | |
|             this.Id.Name = "Id";
 | |
|             this.Id.ReadOnly = true;
 | |
|             this.Id.Visible = false;
 | |
|             // 
 | |
|             // log
 | |
|             // 
 | |
|             this.log.HeaderText = "修改信息";
 | |
|             this.log.Name = "log";
 | |
|             this.log.ReadOnly = true;
 | |
|             this.log.Width = 500;
 | |
|             // 
 | |
|             // work
 | |
|             // 
 | |
|             this.work.HeaderText = "操作人";
 | |
|             this.work.Name = "work";
 | |
|             this.work.ReadOnly = true;
 | |
|             this.work.Width = 90;
 | |
|             // 
 | |
|             // time
 | |
|             // 
 | |
|             this.time.HeaderText = "操作时间";
 | |
|             this.time.Name = "time";
 | |
|             this.time.ReadOnly = true;
 | |
|             this.time.Width = 145;
 | |
|             // 
 | |
|             // dataGridViewTextBoxColumn1
 | |
|             // 
 | |
|             this.dataGridViewTextBoxColumn1.HeaderText = "Id";
 | |
|             this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
 | |
|             this.dataGridViewTextBoxColumn1.Visible = false;
 | |
|             // 
 | |
|             // dataGridViewTextBoxColumn2
 | |
|             // 
 | |
|             this.dataGridViewTextBoxColumn2.HeaderText = "记录信息";
 | |
|             this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
 | |
|             this.dataGridViewTextBoxColumn2.Width = 300;
 | |
|             // 
 | |
|             // dataGridViewTextBoxColumn3
 | |
|             // 
 | |
|             this.dataGridViewTextBoxColumn3.HeaderText = "操作人";
 | |
|             this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
 | |
|             this.dataGridViewTextBoxColumn3.Width = 90;
 | |
|             // 
 | |
|             // dataGridViewTextBoxColumn4
 | |
|             // 
 | |
|             this.dataGridViewTextBoxColumn4.HeaderText = "操作时间";
 | |
|             this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
 | |
|             this.dataGridViewTextBoxColumn4.Width = 160;
 | |
|             // 
 | |
|             // frmPhysioDataUpdateLog
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(804, 729);
 | |
|             this.Controls.Add(this.dgvLog);
 | |
|             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
 | |
|             this.Name = "frmPhysioDataUpdateLog";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "生命体征修改痕迹记录";
 | |
|             this.Load += new System.EventHandler(this.frmPhysioDataUpdateLog_Load);
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dgvLog)).EndInit();
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.DataGridView dgvLog;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Id;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn log;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn work;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn time;
 | |
|     }
 | |
| } |