Form1.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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(263, 14);
  37. this.BTRun.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  38. this.BTRun.Name = "BTRun";
  39. this.BTRun.Size = new System.Drawing.Size(100, 29);
  40. this.BTRun.TabIndex = 0;
  41. this.BTRun.Text = "运行";
  42. this.BTRun.UseVisualStyleBackColor = true;
  43. this.BTRun.Click += new System.EventHandler(this.BTRun_Click);
  44. //
  45. // TBUsername
  46. //
  47. this.TBUsername.Location = new System.Drawing.Point(17, 16);
  48. this.TBUsername.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  49. this.TBUsername.Name = "TBUsername";
  50. this.TBUsername.Size = new System.Drawing.Size(132, 25);
  51. this.TBUsername.TabIndex = 1;
  52. //
  53. // TBPassword
  54. //
  55. this.TBPassword.Location = new System.Drawing.Point(17, 50);
  56. this.TBPassword.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  57. this.TBPassword.Name = "TBPassword";
  58. this.TBPassword.Size = new System.Drawing.Size(132, 25);
  59. this.TBPassword.TabIndex = 2;
  60. //
  61. // TBApp
  62. //
  63. this.TBApp.Location = new System.Drawing.Point(16, 170);
  64. this.TBApp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  65. this.TBApp.Multiline = true;
  66. this.TBApp.Name = "TBApp";
  67. this.TBApp.Size = new System.Drawing.Size(345, 124);
  68. this.TBApp.TabIndex = 3;
  69. //
  70. // Form1
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  74. this.ClientSize = new System.Drawing.Size(379, 326);
  75. this.Controls.Add(this.TBApp);
  76. this.Controls.Add(this.TBPassword);
  77. this.Controls.Add(this.TBUsername);
  78. this.Controls.Add(this.BTRun);
  79. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  80. this.Name = "Form1";
  81. this.Text = "Form1";
  82. this.Load += new System.EventHandler(this.Form1_Load);
  83. this.ResumeLayout(false);
  84. this.PerformLayout();
  85. }
  86. #endregion
  87. private System.Windows.Forms.Button BTRun;
  88. private System.Windows.Forms.TextBox TBUsername;
  89. private System.Windows.Forms.TextBox TBPassword;
  90. private System.Windows.Forms.TextBox TBApp;
  91. }
  92. }