Form1.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. namespace Test.Runrun
  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.BTRun = new System.Windows.Forms.Button();
  29. this.TBUsername = new System.Windows.Forms.TextBox();
  30. this.TBPassword = new System.Windows.Forms.TextBox();
  31. this.TBApp = new System.Windows.Forms.TextBox();
  32. this.SuspendLayout();
  33. //
  34. // BTRun
  35. //
  36. this.BTRun.Location = new System.Drawing.Point(197, 11);
  37. this.BTRun.Name = "BTRun";
  38. this.BTRun.Size = new System.Drawing.Size(75, 23);
  39. this.BTRun.TabIndex = 0;
  40. this.BTRun.Text = "运行";
  41. this.BTRun.UseVisualStyleBackColor = true;
  42. this.BTRun.Click += new System.EventHandler(this.BTRun_Click);
  43. //
  44. // TBUsername
  45. //
  46. this.TBUsername.Location = new System.Drawing.Point(13, 13);
  47. this.TBUsername.Name = "TBUsername";
  48. this.TBUsername.Size = new System.Drawing.Size(100, 21);
  49. this.TBUsername.TabIndex = 1;
  50. //
  51. // TBPassword
  52. //
  53. this.TBPassword.Location = new System.Drawing.Point(13, 40);
  54. this.TBPassword.Name = "TBPassword";
  55. this.TBPassword.Size = new System.Drawing.Size(100, 21);
  56. this.TBPassword.TabIndex = 2;
  57. //
  58. // TBApp
  59. //
  60. this.TBApp.Location = new System.Drawing.Point(12, 136);
  61. this.TBApp.Multiline = true;
  62. this.TBApp.Name = "TBApp";
  63. this.TBApp.Size = new System.Drawing.Size(260, 100);
  64. this.TBApp.TabIndex = 3;
  65. //
  66. // Form1
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(284, 261);
  71. this.Controls.Add(this.TBApp);
  72. this.Controls.Add(this.TBPassword);
  73. this.Controls.Add(this.TBUsername);
  74. this.Controls.Add(this.BTRun);
  75. this.Name = "Form1";
  76. this.Text = "Form1";
  77. this.ResumeLayout(false);
  78. this.PerformLayout();
  79. }
  80. #endregion
  81. private System.Windows.Forms.Button BTRun;
  82. private System.Windows.Forms.TextBox TBUsername;
  83. private System.Windows.Forms.TextBox TBPassword;
  84. private System.Windows.Forms.TextBox TBApp;
  85. }
  86. }