dkThermometerSearchBox.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace Dongke.IBOSS.PRD.Client.Controls.SearchTextBox
  2. {
  3. partial class dkThermometerSearchBox
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.lblThermometerCode = new System.Windows.Forms.Label();
  29. this.txtThermometerCode = new System.Windows.Forms.TextBox();
  30. this.btnSearch = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // lblThermometerCode
  34. //
  35. this.lblThermometerCode.AutoSize = true;
  36. this.lblThermometerCode.BackColor = System.Drawing.Color.Transparent;
  37. this.lblThermometerCode.Location = new System.Drawing.Point(3, 4);
  38. this.lblThermometerCode.Name = "lblThermometerCode";
  39. this.lblThermometerCode.Size = new System.Drawing.Size(65, 12);
  40. this.lblThermometerCode.TabIndex = 1;
  41. this.lblThermometerCode.Text = "温湿计编号";
  42. //
  43. // txtThermometerCode
  44. //
  45. this.txtThermometerCode.Font = new System.Drawing.Font("宋体", 9F);
  46. this.txtThermometerCode.Location = new System.Drawing.Point(74, 0);
  47. this.txtThermometerCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  48. this.txtThermometerCode.Name = "txtThermometerCode";
  49. this.txtThermometerCode.ReadOnly = true;
  50. this.txtThermometerCode.Size = new System.Drawing.Size(155, 21);
  51. this.txtThermometerCode.TabIndex = 2;
  52. this.txtThermometerCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtThermometerCode_KeyDown);
  53. //
  54. // btnSearch
  55. //
  56. this.btnSearch.Image = global::Dongke.IBOSS.PRD.Client.Controls.Properties.Resources.searchButton;
  57. this.btnSearch.Location = new System.Drawing.Point(235, -1);
  58. this.btnSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  59. this.btnSearch.Name = "btnSearch";
  60. this.btnSearch.Size = new System.Drawing.Size(21, 21);
  61. this.btnSearch.TabIndex = 3;
  62. this.btnSearch.UseVisualStyleBackColor = true;
  63. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  64. //
  65. // dkThermometerSearchBox
  66. //
  67. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  69. this.Controls.Add(this.btnSearch);
  70. this.Controls.Add(this.txtThermometerCode);
  71. this.Controls.Add(this.lblThermometerCode);
  72. this.Name = "dkThermometerSearchBox";
  73. this.Size = new System.Drawing.Size(265, 22);
  74. this.SizeChanged += new System.EventHandler(this.dkThermometerSearchBox_SizeChanged);
  75. this.ResumeLayout(false);
  76. this.PerformLayout();
  77. }
  78. #endregion
  79. private System.Windows.Forms.Label lblThermometerCode;
  80. private System.Windows.Forms.TextBox txtThermometerCode;
  81. private System.Windows.Forms.Button btnSearch;
  82. }
  83. }