Form1.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace XinYuConnectionServer
  2. {
  3. partial class Form1
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(251, 106);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "查询";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(27, 26);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(299, 21);
  49. this.textBox1.TabIndex = 1;
  50. //
  51. // button2
  52. //
  53. this.button2.Location = new System.Drawing.Point(111, 75);
  54. this.button2.Name = "button2";
  55. this.button2.Size = new System.Drawing.Size(75, 23);
  56. this.button2.TabIndex = 2;
  57. this.button2.Text = "查询";
  58. this.button2.UseVisualStyleBackColor = true;
  59. this.button2.Click += new System.EventHandler(this.button2_Click);
  60. //
  61. // button3
  62. //
  63. this.button3.Location = new System.Drawing.Point(251, 182);
  64. this.button3.Name = "button3";
  65. this.button3.Size = new System.Drawing.Size(75, 23);
  66. this.button3.TabIndex = 3;
  67. this.button3.Text = "查询";
  68. this.button3.UseVisualStyleBackColor = true;
  69. this.button3.Click += new System.EventHandler(this.button3_Click);
  70. //
  71. // Form1
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(456, 319);
  76. this.Controls.Add(this.button3);
  77. this.Controls.Add(this.button2);
  78. this.Controls.Add(this.textBox1);
  79. this.Controls.Add(this.button1);
  80. this.Name = "Form1";
  81. this.Text = "Form1";
  82. this.ResumeLayout(false);
  83. this.PerformLayout();
  84. }
  85. #endregion
  86. private System.Windows.Forms.Button button1;
  87. private System.Windows.Forms.TextBox textBox1;
  88. private System.Windows.Forms.Button button2;
  89. private System.Windows.Forms.Button button3;
  90. }
  91. }