| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- namespace Test.Runrun
- {
- 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.BTRun = new System.Windows.Forms.Button();
- this.TBUsername = new System.Windows.Forms.TextBox();
- this.TBPassword = new System.Windows.Forms.TextBox();
- this.TBApp = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
- //
- // BTRun
- //
- this.BTRun.Location = new System.Drawing.Point(197, 11);
- this.BTRun.Name = "BTRun";
- this.BTRun.Size = new System.Drawing.Size(75, 23);
- this.BTRun.TabIndex = 0;
- this.BTRun.Text = "运行";
- this.BTRun.UseVisualStyleBackColor = true;
- this.BTRun.Click += new System.EventHandler(this.BTRun_Click);
- //
- // TBUsername
- //
- this.TBUsername.Location = new System.Drawing.Point(13, 13);
- this.TBUsername.Name = "TBUsername";
- this.TBUsername.Size = new System.Drawing.Size(100, 21);
- this.TBUsername.TabIndex = 1;
- //
- // TBPassword
- //
- this.TBPassword.Location = new System.Drawing.Point(13, 40);
- this.TBPassword.Name = "TBPassword";
- this.TBPassword.Size = new System.Drawing.Size(100, 21);
- this.TBPassword.TabIndex = 2;
- //
- // TBApp
- //
- this.TBApp.Location = new System.Drawing.Point(12, 136);
- this.TBApp.Multiline = true;
- this.TBApp.Name = "TBApp";
- this.TBApp.Size = new System.Drawing.Size(260, 100);
- this.TBApp.TabIndex = 3;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(284, 261);
- this.Controls.Add(this.TBApp);
- this.Controls.Add(this.TBPassword);
- this.Controls.Add(this.TBUsername);
- this.Controls.Add(this.BTRun);
- this.Name = "Form1";
- this.Text = "Form1";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button BTRun;
- private System.Windows.Forms.TextBox TBUsername;
- private System.Windows.Forms.TextBox TBPassword;
- private System.Windows.Forms.TextBox TBApp;
- }
- }
|