Form1.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace Test.BlackBox
  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.BTStartBB = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.BTStopBB = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // BTStartBB
  34. //
  35. this.BTStartBB.Location = new System.Drawing.Point(363, 54);
  36. this.BTStartBB.Name = "BTStartBB";
  37. this.BTStartBB.Size = new System.Drawing.Size(75, 23);
  38. this.BTStartBB.TabIndex = 0;
  39. this.BTStartBB.Text = "启动黑匣子";
  40. this.BTStartBB.UseVisualStyleBackColor = true;
  41. this.BTStartBB.Click += new System.EventHandler(this.BTStartBB_Click);
  42. //
  43. // textBox1
  44. //
  45. this.textBox1.Location = new System.Drawing.Point(13, 13);
  46. this.textBox1.Multiline = true;
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(297, 340);
  49. this.textBox1.TabIndex = 1;
  50. //
  51. // BTStopBB
  52. //
  53. this.BTStopBB.Location = new System.Drawing.Point(444, 54);
  54. this.BTStopBB.Name = "BTStopBB";
  55. this.BTStopBB.Size = new System.Drawing.Size(75, 23);
  56. this.BTStopBB.TabIndex = 2;
  57. this.BTStopBB.Text = "停止黑匣子";
  58. this.BTStopBB.UseVisualStyleBackColor = true;
  59. this.BTStopBB.Click += new System.EventHandler(this.BTStopBB_Click);
  60. //
  61. // Form1
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.ClientSize = new System.Drawing.Size(553, 365);
  66. this.Controls.Add(this.BTStopBB);
  67. this.Controls.Add(this.textBox1);
  68. this.Controls.Add(this.BTStartBB);
  69. this.Name = "Form1";
  70. this.Text = "Form1";
  71. this.ResumeLayout(false);
  72. this.PerformLayout();
  73. }
  74. #endregion
  75. private System.Windows.Forms.Button BTStartBB;
  76. private System.Windows.Forms.TextBox textBox1;
  77. private System.Windows.Forms.Button BTStopBB;
  78. }
  79. }