Form1.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. namespace Air105摄像头预览
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.pictureBox_main = new System.Windows.Forms.PictureBox();
  29. this.label_comName = new System.Windows.Forms.Label();
  30. this.button_power = new System.Windows.Forms.Button();
  31. this.label_data_log = new System.Windows.Forms.Label();
  32. this.comboBox_coms = new System.Windows.Forms.ComboBox();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.textBox_br = new System.Windows.Forms.TextBox();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_main)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // pictureBox_main
  40. //
  41. this.pictureBox_main.BackColor = System.Drawing.SystemColors.ControlDark;
  42. this.pictureBox_main.Location = new System.Drawing.Point(12, 96);
  43. this.pictureBox_main.Name = "pictureBox_main";
  44. this.pictureBox_main.Size = new System.Drawing.Size(640, 480);
  45. this.pictureBox_main.TabIndex = 0;
  46. this.pictureBox_main.TabStop = false;
  47. //
  48. // label_comName
  49. //
  50. this.label_comName.AutoSize = true;
  51. this.label_comName.Location = new System.Drawing.Point(12, 14);
  52. this.label_comName.Name = "label_comName";
  53. this.label_comName.Size = new System.Drawing.Size(39, 20);
  54. this.label_comName.TabIndex = 2;
  55. this.label_comName.Text = "串口";
  56. this.label_comName.Click += new System.EventHandler(this.label_comName_Click);
  57. //
  58. // button_power
  59. //
  60. this.button_power.BackColor = System.Drawing.Color.Green;
  61. this.button_power.Location = new System.Drawing.Point(259, 49);
  62. this.button_power.Name = "button_power";
  63. this.button_power.Size = new System.Drawing.Size(94, 29);
  64. this.button_power.TabIndex = 3;
  65. this.button_power.Text = "开始读取";
  66. this.button_power.UseVisualStyleBackColor = false;
  67. this.button_power.Click += new System.EventHandler(this.button1_Click);
  68. //
  69. // label_data_log
  70. //
  71. this.label_data_log.AutoSize = true;
  72. this.label_data_log.Location = new System.Drawing.Point(13, 604);
  73. this.label_data_log.Name = "label_data_log";
  74. this.label_data_log.Size = new System.Drawing.Size(69, 20);
  75. this.label_data_log.TabIndex = 4;
  76. this.label_data_log.Text = "数据日志";
  77. //
  78. // comboBox_coms
  79. //
  80. this.comboBox_coms.FormattingEnabled = true;
  81. this.comboBox_coms.Location = new System.Drawing.Point(92, 12);
  82. this.comboBox_coms.Name = "comboBox_coms";
  83. this.comboBox_coms.Size = new System.Drawing.Size(151, 28);
  84. this.comboBox_coms.TabIndex = 5;
  85. //
  86. // button2
  87. //
  88. this.button2.Location = new System.Drawing.Point(259, 10);
  89. this.button2.Name = "button2";
  90. this.button2.Size = new System.Drawing.Size(94, 29);
  91. this.button2.TabIndex = 6;
  92. this.button2.Text = "刷新串口";
  93. this.button2.UseVisualStyleBackColor = true;
  94. this.button2.Click += new System.EventHandler(this.button2_Click);
  95. //
  96. // label1
  97. //
  98. this.label1.AutoSize = true;
  99. this.label1.Location = new System.Drawing.Point(13, 49);
  100. this.label1.Name = "label1";
  101. this.label1.Size = new System.Drawing.Size(54, 20);
  102. this.label1.TabIndex = 7;
  103. this.label1.Text = "波特率";
  104. //
  105. // textBox_br
  106. //
  107. this.textBox_br.Location = new System.Drawing.Point(92, 49);
  108. this.textBox_br.Name = "textBox_br";
  109. this.textBox_br.Size = new System.Drawing.Size(151, 27);
  110. this.textBox_br.TabIndex = 8;
  111. this.textBox_br.Text = "1500000";
  112. //
  113. // Form1
  114. //
  115. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  116. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  117. this.BackColor = System.Drawing.SystemColors.Control;
  118. this.ClientSize = new System.Drawing.Size(666, 719);
  119. this.Controls.Add(this.textBox_br);
  120. this.Controls.Add(this.label1);
  121. this.Controls.Add(this.button2);
  122. this.Controls.Add(this.comboBox_coms);
  123. this.Controls.Add(this.label_data_log);
  124. this.Controls.Add(this.button_power);
  125. this.Controls.Add(this.label_comName);
  126. this.Controls.Add(this.pictureBox_main);
  127. this.MaximizeBox = false;
  128. this.Name = "Form1";
  129. this.Text = "LuatOS摄像头预览";
  130. this.Load += new System.EventHandler(this.Form1_Load);
  131. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_main)).EndInit();
  132. this.ResumeLayout(false);
  133. this.PerformLayout();
  134. }
  135. #endregion
  136. private PictureBox pictureBox_main;
  137. private Label label_comName;
  138. private Button button_power;
  139. private Label label_data_log;
  140. private ComboBox comboBox_coms;
  141. private Button button2;
  142. private Label label1;
  143. private TextBox textBox_br;
  144. }
  145. }