Form1.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.components = new System.ComponentModel.Container();
  29. this.BTStartBB = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.BTStopBB = new System.Windows.Forms.Button();
  32. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  33. this.BTWriteLog = new System.Windows.Forms.Button();
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.button2 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // BTStartBB
  39. //
  40. this.BTStartBB.Location = new System.Drawing.Point(363, 54);
  41. this.BTStartBB.Name = "BTStartBB";
  42. this.BTStartBB.Size = new System.Drawing.Size(75, 23);
  43. this.BTStartBB.TabIndex = 0;
  44. this.BTStartBB.Text = "启动黑匣子";
  45. this.BTStartBB.UseVisualStyleBackColor = true;
  46. this.BTStartBB.Click += new System.EventHandler(this.BTStartBB_Click);
  47. //
  48. // textBox1
  49. //
  50. this.textBox1.Location = new System.Drawing.Point(13, 13);
  51. this.textBox1.Multiline = true;
  52. this.textBox1.Name = "textBox1";
  53. this.textBox1.Size = new System.Drawing.Size(297, 340);
  54. this.textBox1.TabIndex = 1;
  55. //
  56. // BTStopBB
  57. //
  58. this.BTStopBB.Location = new System.Drawing.Point(444, 54);
  59. this.BTStopBB.Name = "BTStopBB";
  60. this.BTStopBB.Size = new System.Drawing.Size(75, 23);
  61. this.BTStopBB.TabIndex = 2;
  62. this.BTStopBB.Text = "停止黑匣子";
  63. this.BTStopBB.UseVisualStyleBackColor = true;
  64. this.BTStopBB.Click += new System.EventHandler(this.BTStopBB_Click);
  65. //
  66. // BTWriteLog
  67. //
  68. this.BTWriteLog.Location = new System.Drawing.Point(363, 126);
  69. this.BTWriteLog.Name = "BTWriteLog";
  70. this.BTWriteLog.Size = new System.Drawing.Size(75, 23);
  71. this.BTWriteLog.TabIndex = 3;
  72. this.BTWriteLog.Text = "写日志";
  73. this.BTWriteLog.UseVisualStyleBackColor = true;
  74. this.BTWriteLog.Click += new System.EventHandler(this.BTWriteLog_Click);
  75. //
  76. // button1
  77. //
  78. this.button1.Location = new System.Drawing.Point(339, 295);
  79. this.button1.Name = "button1";
  80. this.button1.Size = new System.Drawing.Size(75, 23);
  81. this.button1.TabIndex = 4;
  82. this.button1.Text = "button1";
  83. this.button1.UseVisualStyleBackColor = true;
  84. this.button1.Click += new System.EventHandler(this.button1_Click);
  85. //
  86. // button2
  87. //
  88. this.button2.Location = new System.Drawing.Point(444, 295);
  89. this.button2.Name = "button2";
  90. this.button2.Size = new System.Drawing.Size(75, 23);
  91. this.button2.TabIndex = 5;
  92. this.button2.Text = "button2";
  93. this.button2.UseVisualStyleBackColor = true;
  94. this.button2.Click += new System.EventHandler(this.button2_Click);
  95. //
  96. // Form1
  97. //
  98. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100. this.ClientSize = new System.Drawing.Size(553, 365);
  101. this.Controls.Add(this.button2);
  102. this.Controls.Add(this.button1);
  103. this.Controls.Add(this.BTWriteLog);
  104. this.Controls.Add(this.BTStopBB);
  105. this.Controls.Add(this.textBox1);
  106. this.Controls.Add(this.BTStartBB);
  107. this.Name = "Form1";
  108. this.Text = "Form1";
  109. this.Load += new System.EventHandler(this.Form1_Load);
  110. this.ResumeLayout(false);
  111. this.PerformLayout();
  112. }
  113. #endregion
  114. private System.Windows.Forms.Button BTStartBB;
  115. private System.Windows.Forms.TextBox textBox1;
  116. private System.Windows.Forms.Button BTStopBB;
  117. private System.Windows.Forms.ToolTip toolTip1;
  118. private System.Windows.Forms.Button BTWriteLog;
  119. private System.Windows.Forms.Button button1;
  120. private System.Windows.Forms.Button button2;
  121. }
  122. }