|
|
@@ -0,0 +1,166 @@
|
|
|
+namespace UAS_AutoPast
|
|
|
+{
|
|
|
+ partial class Form1
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 必需的设计器变量。
|
|
|
+ /// </summary>
|
|
|
+ private System.ComponentModel.IContainer components = null;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 清理所有正在使用的资源。
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
|
+ protected override void Dispose(bool disposing)
|
|
|
+ {
|
|
|
+ if (disposing && (components != null))
|
|
|
+ {
|
|
|
+ components.Dispose();
|
|
|
+ }
|
|
|
+ base.Dispose(disposing);
|
|
|
+ }
|
|
|
+
|
|
|
+ #region Windows 窗体设计器生成的代码
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 设计器支持所需的方法 - 不要修改
|
|
|
+ /// 使用代码编辑器修改此方法的内容。
|
|
|
+ /// </summary>
|
|
|
+ private void InitializeComponent()
|
|
|
+ {
|
|
|
+ this.components = new System.ComponentModel.Container();
|
|
|
+ this.CollectNum = new System.Windows.Forms.NumericUpDown();
|
|
|
+ this.CollectNum_label = new System.Windows.Forms.Label();
|
|
|
+ this.label1 = new System.Windows.Forms.Label();
|
|
|
+ this.CollectData = new System.Windows.Forms.TextBox();
|
|
|
+ this.Start = new System.Windows.Forms.Button();
|
|
|
+ this.Stop = new System.Windows.Forms.Button();
|
|
|
+ this.AutoPastTimer = new System.Windows.Forms.Timer(this.components);
|
|
|
+ this.CollectTime_label = new System.Windows.Forms.Label();
|
|
|
+ this.CollectTime = new System.Windows.Forms.NumericUpDown();
|
|
|
+ this.Status_label = new System.Windows.Forms.Label();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.CollectNum)).BeginInit();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.CollectTime)).BeginInit();
|
|
|
+ this.SuspendLayout();
|
|
|
+ //
|
|
|
+ // CollectNum
|
|
|
+ //
|
|
|
+ this.CollectNum.Location = new System.Drawing.Point(206, 55);
|
|
|
+ this.CollectNum.Name = "CollectNum";
|
|
|
+ this.CollectNum.Size = new System.Drawing.Size(163, 25);
|
|
|
+ this.CollectNum.TabIndex = 0;
|
|
|
+ //
|
|
|
+ // CollectNum_label
|
|
|
+ //
|
|
|
+ this.CollectNum_label.AutoSize = true;
|
|
|
+ this.CollectNum_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.CollectNum_label.Location = new System.Drawing.Point(98, 54);
|
|
|
+ this.CollectNum_label.Name = "CollectNum_label";
|
|
|
+ this.CollectNum_label.Size = new System.Drawing.Size(92, 27);
|
|
|
+ this.CollectNum_label.TabIndex = 1;
|
|
|
+ this.CollectNum_label.Text = "采集板数";
|
|
|
+ //
|
|
|
+ // label1
|
|
|
+ //
|
|
|
+ this.label1.AutoSize = true;
|
|
|
+ this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.label1.Location = new System.Drawing.Point(98, 139);
|
|
|
+ this.label1.Name = "label1";
|
|
|
+ this.label1.Size = new System.Drawing.Size(92, 27);
|
|
|
+ this.label1.TabIndex = 2;
|
|
|
+ this.label1.Text = "采集数据";
|
|
|
+ //
|
|
|
+ // CollectData
|
|
|
+ //
|
|
|
+ this.CollectData.Location = new System.Drawing.Point(206, 141);
|
|
|
+ this.CollectData.Name = "CollectData";
|
|
|
+ this.CollectData.Size = new System.Drawing.Size(163, 25);
|
|
|
+ this.CollectData.TabIndex = 3;
|
|
|
+ this.CollectData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CollectData_KeyDown);
|
|
|
+ //
|
|
|
+ // Start
|
|
|
+ //
|
|
|
+ this.Start.Location = new System.Drawing.Point(148, 215);
|
|
|
+ this.Start.Name = "Start";
|
|
|
+ this.Start.Size = new System.Drawing.Size(75, 37);
|
|
|
+ this.Start.TabIndex = 4;
|
|
|
+ this.Start.Text = "开始";
|
|
|
+ this.Start.UseVisualStyleBackColor = true;
|
|
|
+ this.Start.Click += new System.EventHandler(this.Start_Click);
|
|
|
+ //
|
|
|
+ // Stop
|
|
|
+ //
|
|
|
+ this.Stop.Location = new System.Drawing.Point(265, 215);
|
|
|
+ this.Stop.Name = "Stop";
|
|
|
+ this.Stop.Size = new System.Drawing.Size(75, 37);
|
|
|
+ this.Stop.TabIndex = 5;
|
|
|
+ this.Stop.Text = "结束";
|
|
|
+ this.Stop.UseVisualStyleBackColor = true;
|
|
|
+ this.Stop.Click += new System.EventHandler(this.Stop_Click);
|
|
|
+ //
|
|
|
+ // CollectTime_label
|
|
|
+ //
|
|
|
+ this.CollectTime_label.AutoSize = true;
|
|
|
+ this.CollectTime_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.CollectTime_label.Location = new System.Drawing.Point(98, 98);
|
|
|
+ this.CollectTime_label.Name = "CollectTime_label";
|
|
|
+ this.CollectTime_label.Size = new System.Drawing.Size(92, 27);
|
|
|
+ this.CollectTime_label.TabIndex = 6;
|
|
|
+ this.CollectTime_label.Text = "采集时长";
|
|
|
+ //
|
|
|
+ // CollectTime
|
|
|
+ //
|
|
|
+ this.CollectTime.Location = new System.Drawing.Point(206, 98);
|
|
|
+ this.CollectTime.Name = "CollectTime";
|
|
|
+ this.CollectTime.Size = new System.Drawing.Size(163, 25);
|
|
|
+ this.CollectTime.TabIndex = 7;
|
|
|
+ //
|
|
|
+ // Status_label
|
|
|
+ //
|
|
|
+ this.Status_label.AutoSize = true;
|
|
|
+ this.Status_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.Status_label.Location = new System.Drawing.Point(11, 10);
|
|
|
+ this.Status_label.Name = "Status_label";
|
|
|
+ this.Status_label.Size = new System.Drawing.Size(72, 27);
|
|
|
+ this.Status_label.TabIndex = 8;
|
|
|
+ this.Status_label.Text = "未开始";
|
|
|
+ //
|
|
|
+ // Form1
|
|
|
+ //
|
|
|
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
|
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
+ this.ClientSize = new System.Drawing.Size(468, 302);
|
|
|
+ this.Controls.Add(this.Status_label);
|
|
|
+ this.Controls.Add(this.CollectTime);
|
|
|
+ this.Controls.Add(this.CollectTime_label);
|
|
|
+ this.Controls.Add(this.Stop);
|
|
|
+ this.Controls.Add(this.Start);
|
|
|
+ this.Controls.Add(this.CollectData);
|
|
|
+ this.Controls.Add(this.label1);
|
|
|
+ this.Controls.Add(this.CollectNum_label);
|
|
|
+ this.Controls.Add(this.CollectNum);
|
|
|
+ this.Name = "Form1";
|
|
|
+ this.Text = "Form1";
|
|
|
+ this.Load += new System.EventHandler(this.Form1_Load);
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.CollectNum)).EndInit();
|
|
|
+ ((System.ComponentModel.ISupportInitialize)(this.CollectTime)).EndInit();
|
|
|
+ this.ResumeLayout(false);
|
|
|
+ this.PerformLayout();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ private System.Windows.Forms.NumericUpDown CollectNum;
|
|
|
+ private System.Windows.Forms.Label CollectNum_label;
|
|
|
+ private System.Windows.Forms.Label label1;
|
|
|
+ private System.Windows.Forms.TextBox CollectData;
|
|
|
+ private System.Windows.Forms.Button Start;
|
|
|
+ private System.Windows.Forms.Button Stop;
|
|
|
+ private System.Windows.Forms.Timer AutoPastTimer;
|
|
|
+ private System.Windows.Forms.Label CollectTime_label;
|
|
|
+ private System.Windows.Forms.NumericUpDown CollectTime;
|
|
|
+ private System.Windows.Forms.Label Status_label;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|