Form1.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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.SuspendLayout();
  35. //
  36. // BTStartBB
  37. //
  38. this.BTStartBB.Location = new System.Drawing.Point(363, 54);
  39. this.BTStartBB.Name = "BTStartBB";
  40. this.BTStartBB.Size = new System.Drawing.Size(75, 23);
  41. this.BTStartBB.TabIndex = 0;
  42. this.BTStartBB.Text = "启动黑匣子";
  43. this.BTStartBB.UseVisualStyleBackColor = true;
  44. this.BTStartBB.Click += new System.EventHandler(this.BTStartBB_Click);
  45. //
  46. // textBox1
  47. //
  48. this.textBox1.Location = new System.Drawing.Point(13, 13);
  49. this.textBox1.Multiline = true;
  50. this.textBox1.Name = "textBox1";
  51. this.textBox1.Size = new System.Drawing.Size(297, 340);
  52. this.textBox1.TabIndex = 1;
  53. //
  54. // BTStopBB
  55. //
  56. this.BTStopBB.Location = new System.Drawing.Point(444, 54);
  57. this.BTStopBB.Name = "BTStopBB";
  58. this.BTStopBB.Size = new System.Drawing.Size(75, 23);
  59. this.BTStopBB.TabIndex = 2;
  60. this.BTStopBB.Text = "停止黑匣子";
  61. this.BTStopBB.UseVisualStyleBackColor = true;
  62. this.BTStopBB.Click += new System.EventHandler(this.BTStopBB_Click);
  63. //
  64. // BTWriteLog
  65. //
  66. this.BTWriteLog.Location = new System.Drawing.Point(363, 126);
  67. this.BTWriteLog.Name = "BTWriteLog";
  68. this.BTWriteLog.Size = new System.Drawing.Size(75, 23);
  69. this.BTWriteLog.TabIndex = 3;
  70. this.BTWriteLog.Text = "写日志";
  71. this.BTWriteLog.UseVisualStyleBackColor = true;
  72. this.BTWriteLog.Click += new System.EventHandler(this.BTWriteLog_Click);
  73. //
  74. // Form1
  75. //
  76. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  77. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78. this.ClientSize = new System.Drawing.Size(553, 365);
  79. this.Controls.Add(this.BTWriteLog);
  80. this.Controls.Add(this.BTStopBB);
  81. this.Controls.Add(this.textBox1);
  82. this.Controls.Add(this.BTStartBB);
  83. this.Name = "Form1";
  84. this.Text = "Form1";
  85. this.Load += new System.EventHandler(this.Form1_Load);
  86. this.ResumeLayout(false);
  87. this.PerformLayout();
  88. }
  89. #endregion
  90. private System.Windows.Forms.Button BTStartBB;
  91. private System.Windows.Forms.TextBox textBox1;
  92. private System.Windows.Forms.Button BTStopBB;
  93. private System.Windows.Forms.ToolTip toolTip1;
  94. private System.Windows.Forms.Button BTWriteLog;
  95. }
  96. }