Form1.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace GarnetClient
  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.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(12, 12);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(101, 35);
  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. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(12, 83);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(101, 35);
  49. this.button2.TabIndex = 1;
  50. this.button2.Text = "发送数据";
  51. this.button2.UseVisualStyleBackColor = true;
  52. this.button2.Click += new System.EventHandler(this.button2_Click);
  53. //
  54. // button3
  55. //
  56. this.button3.Location = new System.Drawing.Point(141, 12);
  57. this.button3.Name = "button3";
  58. this.button3.Size = new System.Drawing.Size(101, 35);
  59. this.button3.TabIndex = 2;
  60. this.button3.Text = "断开连接";
  61. this.button3.UseVisualStyleBackColor = true;
  62. //
  63. // button4
  64. //
  65. this.button4.Location = new System.Drawing.Point(417, 83);
  66. this.button4.Name = "button4";
  67. this.button4.Size = new System.Drawing.Size(101, 35);
  68. this.button4.TabIndex = 3;
  69. this.button4.Text = "读取数据";
  70. this.button4.UseVisualStyleBackColor = true;
  71. this.button4.Click += new System.EventHandler(this.button4_Click);
  72. //
  73. // Form1
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.ClientSize = new System.Drawing.Size(800, 450);
  78. this.Controls.Add(this.button4);
  79. this.Controls.Add(this.button3);
  80. this.Controls.Add(this.button2);
  81. this.Controls.Add(this.button1);
  82. this.Name = "Form1";
  83. this.Text = "Form1";
  84. this.ResumeLayout(false);
  85. }
  86. #endregion
  87. private System.Windows.Forms.Button button1;
  88. private System.Windows.Forms.Button button2;
  89. private System.Windows.Forms.Button button3;
  90. private System.Windows.Forms.Button button4;
  91. }
  92. }