Form1.Designer.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. namespace PageCodeParse
  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.textBox1 = new System.Windows.Forms.TextBox();
  29. this.btn_Start = new System.Windows.Forms.Button();
  30. this.lbl_status = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // textBox1
  34. //
  35. this.textBox1.Location = new System.Drawing.Point(12, 12);
  36. this.textBox1.Name = "textBox1";
  37. this.textBox1.Size = new System.Drawing.Size(569, 21);
  38. this.textBox1.TabIndex = 0;
  39. //
  40. // btn_Start
  41. //
  42. this.btn_Start.Location = new System.Drawing.Point(12, 39);
  43. this.btn_Start.Name = "btn_Start";
  44. this.btn_Start.Size = new System.Drawing.Size(75, 23);
  45. this.btn_Start.TabIndex = 1;
  46. this.btn_Start.Text = "Start";
  47. this.btn_Start.UseVisualStyleBackColor = true;
  48. this.btn_Start.Click += new System.EventHandler(this.btn_Start_Click);
  49. //
  50. // lbl_status
  51. //
  52. this.lbl_status.AutoSize = true;
  53. this.lbl_status.Location = new System.Drawing.Point(93, 44);
  54. this.lbl_status.Name = "lbl_status";
  55. this.lbl_status.Size = new System.Drawing.Size(29, 12);
  56. this.lbl_status.TabIndex = 2;
  57. this.lbl_status.Text = "状态";
  58. //
  59. // Form1
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  63. this.ClientSize = new System.Drawing.Size(593, 602);
  64. this.Controls.Add(this.lbl_status);
  65. this.Controls.Add(this.btn_Start);
  66. this.Controls.Add(this.textBox1);
  67. this.Name = "Form1";
  68. this.Text = "Form1";
  69. this.ResumeLayout(false);
  70. this.PerformLayout();
  71. }
  72. #endregion
  73. private System.Windows.Forms.TextBox textBox1;
  74. private System.Windows.Forms.Button btn_Start;
  75. private System.Windows.Forms.Label lbl_status;
  76. }
  77. }