44444444444444
       

TinyTaskController

--------------------- 最終更新日時 : 25/08/18

namespace TinyTaskController
{
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 窗体设计器生成的代码

private void InitializeComponent()
{
this.btnPlay = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.txtLoopCount = new System.Windows.Forms.TextBox();
this.txtInterval = new System.Windows.Forms.TextBox();
this.lblLoop = new System.Windows.Forms.Label();
this.lblInterval = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnPlay
//
this.btnPlay.Location = new System.Drawing.Point(30, 150);
this.btnPlay.Name = “btnPlay”;
this.btnPlay.Size = new System.Drawing.Size(100, 40);
this.btnPlay.TabIndex = 0;
this.btnPlay.Text = “播放”;
this.btnPlay.UseVisualStyleBackColor = true;
this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(160, 150);
this.btnStop.Name = “btnStop”;
this.btnStop.Size = new System.Drawing.Size(100, 40);
this.btnStop.TabIndex = 1;
this.btnStop.Text = “停止”;
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// txtLoopCount
//
this.txtLoopCount.Location = new System.Drawing.Point(160, 30);
this.txtLoopCount.Name = “txtLoopCount”;
this.txtLoopCount.Size = new System.Drawing.Size(100, 25);
this.txtLoopCount.TabIndex = 2;
//
// txtInterval
//
this.txtInterval.Location = new System.Drawing.Point(160, 80);
this.txtInterval.Name = “txtInterval”;
this.txtInterval.Size = new System.Drawing.Size(100, 25);
this.txtInterval.TabIndex = 3;
//
// lblLoop
//
this.lblLoop.AutoSize = true;
this.lblLoop.Location = new System.Drawing.Point(30, 35);
this.lblLoop.Name = “lblLoop”;
this.lblLoop.Size = new System.Drawing.Size(112, 15);
this.lblLoop.TabIndex = 4;
this.lblLoop.Text = “循环次数(次)”;
//
// lblInterval
//
this.lblInterval.AutoSize = true;
this.lblInterval.Location = new System.Drawing.Point(30, 85);
this.lblInterval.Name = “lblInterval”;
this.lblInterval.Size = new System.Drawing.Size(120, 15);
this.lblInterval.TabIndex = 5;
this.lblInterval.Text = “循环间隔(秒)”;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(300, 220);
this.Controls.Add(this.lblInterval);
this.Controls.Add(this.lblLoop);
this.Controls.Add(this.txtInterval);
this.Controls.Add(this.txtLoopCount);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.btnPlay);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = “Form1”;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = “TinyTask 控制器”;
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.TextBox txtLoopCount;
private System.Windows.Forms.TextBox txtInterval;
private System.Windows.Forms.Label lblLoop;
private System.Windows.Forms.Label lblInterval;
}
}

     
-------ggggggggggg------