ReadTestInfo.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace MaterialPrint
  2. {
  3. partial class ReadTestInfo
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.SN = new System.Windows.Forms.TextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.ResultView = new System.Windows.Forms.DataGridView();
  31. this.itemname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.testresult = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. ((System.ComponentModel.ISupportInitialize)(this.ResultView)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // SN
  37. //
  38. this.SN.Font = new System.Drawing.Font("微软雅黑", 15.875F);
  39. this.SN.Location = new System.Drawing.Point(174, 36);
  40. this.SN.Name = "SN";
  41. this.SN.Size = new System.Drawing.Size(914, 63);
  42. this.SN.TabIndex = 1;
  43. this.SN.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SN_KeyDown);
  44. //
  45. // label1
  46. //
  47. this.label1.AutoSize = true;
  48. this.label1.Font = new System.Drawing.Font("微软雅黑", 15.875F);
  49. this.label1.Location = new System.Drawing.Point(9, 38);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(154, 57);
  52. this.label1.TabIndex = 2;
  53. this.label1.Text = "序列号";
  54. //
  55. // ResultView
  56. //
  57. this.ResultView.AllowUserToAddRows = false;
  58. this.ResultView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  59. this.ResultView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  60. this.itemname,
  61. this.testresult});
  62. this.ResultView.Location = new System.Drawing.Point(12, 127);
  63. this.ResultView.Name = "ResultView";
  64. this.ResultView.RowTemplate.Height = 37;
  65. this.ResultView.Size = new System.Drawing.Size(1320, 716);
  66. this.ResultView.TabIndex = 3;
  67. this.ResultView.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.ResultView_CellPainting);
  68. //
  69. // itemname
  70. //
  71. this.itemname.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  72. this.itemname.DataPropertyName = "itemname";
  73. this.itemname.HeaderText = "测试项目";
  74. this.itemname.Name = "itemname";
  75. this.itemname.Width = 151;
  76. //
  77. // testresult
  78. //
  79. this.testresult.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  80. this.testresult.DataPropertyName = "testresult";
  81. this.testresult.HeaderText = "测试结果";
  82. this.testresult.Name = "testresult";
  83. this.testresult.Width = 151;
  84. //
  85. // ReadTestInfo
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.ClientSize = new System.Drawing.Size(1344, 855);
  90. this.Controls.Add(this.ResultView);
  91. this.Controls.Add(this.label1);
  92. this.Controls.Add(this.SN);
  93. this.Name = "ReadTestInfo";
  94. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  95. this.Text = "ReadTestInfo";
  96. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  97. this.Load += new System.EventHandler(this.ReadTestInfo_Load);
  98. ((System.ComponentModel.ISupportInitialize)(this.ResultView)).EndInit();
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.TextBox SN;
  104. private System.Windows.Forms.Label label1;
  105. private System.Windows.Forms.DataGridView ResultView;
  106. private System.Windows.Forms.DataGridViewTextBoxColumn itemname;
  107. private System.Windows.Forms.DataGridViewTextBoxColumn testresult;
  108. }
  109. }