CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

frmInstrumentCode.Designer.cs 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. namespace CNAS_DBSync
  2. {
  3. partial class frmInstrumentCode
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmInstrumentCode));
  29. this.txtCode = new System.Windows.Forms.TextBox();
  30. this.btnOK = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.cbxInstruType = new System.Windows.Forms.ComboBox();
  34. this.SuspendLayout();
  35. //
  36. // txtCode
  37. //
  38. this.txtCode.Location = new System.Drawing.Point(83, 25);
  39. this.txtCode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  40. this.txtCode.Name = "txtCode";
  41. this.txtCode.Size = new System.Drawing.Size(275, 23);
  42. this.txtCode.TabIndex = 0;
  43. //
  44. // btnOK
  45. //
  46. this.btnOK.Location = new System.Drawing.Point(289, 89);
  47. this.btnOK.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  48. this.btnOK.Name = "btnOK";
  49. this.btnOK.Size = new System.Drawing.Size(90, 30);
  50. this.btnOK.TabIndex = 1;
  51. this.btnOK.Text = "确定";
  52. this.btnOK.UseVisualStyleBackColor = true;
  53. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  54. //
  55. // label1
  56. //
  57. this.label1.AutoSize = true;
  58. this.label1.Location = new System.Drawing.Point(11, 28);
  59. this.label1.Name = "label1";
  60. this.label1.Size = new System.Drawing.Size(68, 17);
  61. this.label1.TabIndex = 2;
  62. this.label1.Text = "仪器编号:";
  63. //
  64. // label2
  65. //
  66. this.label2.AutoSize = true;
  67. this.label2.Location = new System.Drawing.Point(35, 60);
  68. this.label2.Name = "label2";
  69. this.label2.Size = new System.Drawing.Size(44, 17);
  70. this.label2.TabIndex = 3;
  71. this.label2.Text = "类型:";
  72. //
  73. // cbxInstruType
  74. //
  75. this.cbxInstruType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  76. this.cbxInstruType.FormattingEnabled = true;
  77. this.cbxInstruType.Items.AddRange(new object[] {
  78. "水分仪",
  79. "测硫仪",
  80. "工业分析仪",
  81. "灰熔点",
  82. "红外测硫仪",
  83. "元素分析仪",
  84. "量热仪",
  85. "其它"});
  86. this.cbxInstruType.Location = new System.Drawing.Point(82, 56);
  87. this.cbxInstruType.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  88. this.cbxInstruType.Name = "cbxInstruType";
  89. this.cbxInstruType.Size = new System.Drawing.Size(276, 25);
  90. this.cbxInstruType.TabIndex = 4;
  91. //
  92. // frmInstrumentCode
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(395, 130);
  97. this.Controls.Add(this.cbxInstruType);
  98. this.Controls.Add(this.label2);
  99. this.Controls.Add(this.label1);
  100. this.Controls.Add(this.btnOK);
  101. this.Controls.Add(this.txtCode);
  102. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  103. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  104. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  105. this.MaximizeBox = false;
  106. this.MinimizeBox = false;
  107. this.Name = "frmInstrumentCode";
  108. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  109. this.Text = "请填写仪器编号";
  110. this.ResumeLayout(false);
  111. this.PerformLayout();
  112. }
  113. #endregion
  114. private System.Windows.Forms.TextBox txtCode;
  115. private System.Windows.Forms.Button btnOK;
  116. private System.Windows.Forms.Label label1;
  117. private System.Windows.Forms.Label label2;
  118. private System.Windows.Forms.ComboBox cbxInstruType;
  119. }
  120. }