FrmAddMaterial.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. namespace HRT_Measure
  2. {
  3. partial class FrmAddMaterial
  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.components = new System.ComponentModel.Container();
  29. this.timer1 = new System.Windows.Forms.Timer(this.components);
  30. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  31. this.lblCurrentProduct = new System.Windows.Forms.Label();
  32. this.clbSeletedItem = new System.Windows.Forms.CheckedListBox();
  33. this.txtNewName = new System.Windows.Forms.TextBox();
  34. this.lblNewName = new System.Windows.Forms.Label();
  35. this.btnAdd = new System.Windows.Forms.Button();
  36. this.btnReName = new System.Windows.Forms.Button();
  37. this.btnUpdate = new System.Windows.Forms.Button();
  38. this.btnDelete = new System.Windows.Forms.Button();
  39. this.btnSeleted = new System.Windows.Forms.Button();
  40. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  41. this.splitContainer1.Panel1.SuspendLayout();
  42. this.splitContainer1.Panel2.SuspendLayout();
  43. this.splitContainer1.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // timer1
  47. //
  48. this.timer1.Interval = 1000;
  49. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  50. //
  51. // splitContainer1
  52. //
  53. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  54. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  55. this.splitContainer1.Margin = new System.Windows.Forms.Padding(2, 1, 2, 1);
  56. this.splitContainer1.Name = "splitContainer1";
  57. //
  58. // splitContainer1.Panel1
  59. //
  60. this.splitContainer1.Panel1.Controls.Add(this.lblCurrentProduct);
  61. this.splitContainer1.Panel1.Controls.Add(this.clbSeletedItem);
  62. //
  63. // splitContainer1.Panel2
  64. //
  65. this.splitContainer1.Panel2.Controls.Add(this.txtNewName);
  66. this.splitContainer1.Panel2.Controls.Add(this.lblNewName);
  67. this.splitContainer1.Panel2.Controls.Add(this.btnAdd);
  68. this.splitContainer1.Panel2.Controls.Add(this.btnReName);
  69. this.splitContainer1.Panel2.Controls.Add(this.btnUpdate);
  70. this.splitContainer1.Panel2.Controls.Add(this.btnDelete);
  71. this.splitContainer1.Panel2.Controls.Add(this.btnSeleted);
  72. this.splitContainer1.Size = new System.Drawing.Size(1018, 536);
  73. this.splitContainer1.SplitterDistance = 613;
  74. this.splitContainer1.SplitterWidth = 2;
  75. this.splitContainer1.TabIndex = 0;
  76. //
  77. // lblCurrentProduct
  78. //
  79. this.lblCurrentProduct.Dock = System.Windows.Forms.DockStyle.Top;
  80. this.lblCurrentProduct.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  81. this.lblCurrentProduct.Location = new System.Drawing.Point(0, 0);
  82. this.lblCurrentProduct.Name = "lblCurrentProduct";
  83. this.lblCurrentProduct.Size = new System.Drawing.Size(613, 37);
  84. this.lblCurrentProduct.TabIndex = 57;
  85. this.lblCurrentProduct.Text = "当前料号:";
  86. this.lblCurrentProduct.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  87. //
  88. // clbSeletedItem
  89. //
  90. this.clbSeletedItem.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  91. | System.Windows.Forms.AnchorStyles.Left)
  92. | System.Windows.Forms.AnchorStyles.Right)));
  93. this.clbSeletedItem.FormattingEnabled = true;
  94. this.clbSeletedItem.Location = new System.Drawing.Point(0, 36);
  95. this.clbSeletedItem.Name = "clbSeletedItem";
  96. this.clbSeletedItem.Size = new System.Drawing.Size(610, 484);
  97. this.clbSeletedItem.TabIndex = 50;
  98. this.clbSeletedItem.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.clbSeletedItem_ItemCheck);
  99. //
  100. // txtNewName
  101. //
  102. this.txtNewName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  103. this.txtNewName.Location = new System.Drawing.Point(105, 21);
  104. this.txtNewName.Name = "txtNewName";
  105. this.txtNewName.Size = new System.Drawing.Size(118, 23);
  106. this.txtNewName.TabIndex = 58;
  107. //
  108. // lblNewName
  109. //
  110. this.lblNewName.AutoSize = true;
  111. this.lblNewName.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  112. this.lblNewName.Location = new System.Drawing.Point(7, 22);
  113. this.lblNewName.Name = "lblNewName";
  114. this.lblNewName.Size = new System.Drawing.Size(103, 16);
  115. this.lblNewName.TabIndex = 53;
  116. this.lblNewName.Text = "新料号名称:";
  117. //
  118. // btnAdd
  119. //
  120. this.btnAdd.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  121. this.btnAdd.Location = new System.Drawing.Point(64, 70);
  122. this.btnAdd.Margin = new System.Windows.Forms.Padding(2);
  123. this.btnAdd.Name = "btnAdd";
  124. this.btnAdd.Size = new System.Drawing.Size(102, 29);
  125. this.btnAdd.TabIndex = 51;
  126. this.btnAdd.Text = "新增料号";
  127. this.btnAdd.UseVisualStyleBackColor = true;
  128. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  129. //
  130. // btnReName
  131. //
  132. this.btnReName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  133. this.btnReName.Location = new System.Drawing.Point(64, 175);
  134. this.btnReName.Margin = new System.Windows.Forms.Padding(2);
  135. this.btnReName.Name = "btnReName";
  136. this.btnReName.Size = new System.Drawing.Size(102, 29);
  137. this.btnReName.TabIndex = 52;
  138. this.btnReName.Text = "重命名";
  139. this.btnReName.UseVisualStyleBackColor = true;
  140. this.btnReName.Click += new System.EventHandler(this.btnReName_Click);
  141. //
  142. // btnUpdate
  143. //
  144. this.btnUpdate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  145. this.btnUpdate.Location = new System.Drawing.Point(64, 279);
  146. this.btnUpdate.Margin = new System.Windows.Forms.Padding(2);
  147. this.btnUpdate.Name = "btnUpdate";
  148. this.btnUpdate.Size = new System.Drawing.Size(102, 29);
  149. this.btnUpdate.TabIndex = 56;
  150. this.btnUpdate.Text = "刷新";
  151. this.btnUpdate.UseVisualStyleBackColor = true;
  152. this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
  153. //
  154. // btnDelete
  155. //
  156. this.btnDelete.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  157. this.btnDelete.Location = new System.Drawing.Point(64, 122);
  158. this.btnDelete.Margin = new System.Windows.Forms.Padding(2);
  159. this.btnDelete.Name = "btnDelete";
  160. this.btnDelete.Size = new System.Drawing.Size(102, 29);
  161. this.btnDelete.TabIndex = 55;
  162. this.btnDelete.Text = "删除料号";
  163. this.btnDelete.UseVisualStyleBackColor = true;
  164. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  165. //
  166. // btnSeleted
  167. //
  168. this.btnSeleted.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  169. this.btnSeleted.Location = new System.Drawing.Point(64, 227);
  170. this.btnSeleted.Margin = new System.Windows.Forms.Padding(2);
  171. this.btnSeleted.Name = "btnSeleted";
  172. this.btnSeleted.Size = new System.Drawing.Size(102, 29);
  173. this.btnSeleted.TabIndex = 54;
  174. this.btnSeleted.Text = "加载当前料号";
  175. this.btnSeleted.UseVisualStyleBackColor = true;
  176. this.btnSeleted.Click += new System.EventHandler(this.btnSeleted_Click);
  177. //
  178. // FrmAddMaterial
  179. //
  180. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  181. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  182. this.ClientSize = new System.Drawing.Size(1018, 536);
  183. this.Controls.Add(this.splitContainer1);
  184. this.Name = "FrmAddMaterial";
  185. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  186. this.Text = "料号";
  187. this.Load += new System.EventHandler(this.FrmAddMaterial_Load);
  188. this.splitContainer1.Panel1.ResumeLayout(false);
  189. this.splitContainer1.Panel2.ResumeLayout(false);
  190. this.splitContainer1.Panel2.PerformLayout();
  191. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  192. this.splitContainer1.ResumeLayout(false);
  193. this.ResumeLayout(false);
  194. }
  195. #endregion
  196. private System.Windows.Forms.Timer timer1;
  197. private System.Windows.Forms.SplitContainer splitContainer1;
  198. private System.Windows.Forms.Label lblCurrentProduct;
  199. private System.Windows.Forms.CheckedListBox clbSeletedItem;
  200. private System.Windows.Forms.TextBox txtNewName;
  201. private System.Windows.Forms.Label lblNewName;
  202. private System.Windows.Forms.Button btnAdd;
  203. private System.Windows.Forms.Button btnReName;
  204. private System.Windows.Forms.Button btnUpdate;
  205. private System.Windows.Forms.Button btnDelete;
  206. private System.Windows.Forms.Button btnSeleted;
  207. }
  208. }