Form1.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace FileAnalysis
  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.ReturnData = new System.Windows.Forms.RichTextBox();
  29. this.Analysis = new System.Windows.Forms.Button();
  30. this.Result = new System.Windows.Forms.RichTextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.SuspendLayout();
  34. //
  35. // ReturnData
  36. //
  37. this.ReturnData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right)));
  40. this.ReturnData.Location = new System.Drawing.Point(12, 52);
  41. this.ReturnData.Name = "ReturnData";
  42. this.ReturnData.Size = new System.Drawing.Size(1039, 184);
  43. this.ReturnData.TabIndex = 0;
  44. this.ReturnData.Text = "";
  45. //
  46. // Analysis
  47. //
  48. this.Analysis.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  49. this.Analysis.Location = new System.Drawing.Point(936, 650);
  50. this.Analysis.Name = "Analysis";
  51. this.Analysis.Size = new System.Drawing.Size(111, 35);
  52. this.Analysis.TabIndex = 2;
  53. this.Analysis.Text = "解析";
  54. this.Analysis.UseVisualStyleBackColor = true;
  55. this.Analysis.Click += new System.EventHandler(this.Analysis_Click);
  56. //
  57. // Result
  58. //
  59. this.Result.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  60. | System.Windows.Forms.AnchorStyles.Left)
  61. | System.Windows.Forms.AnchorStyles.Right)));
  62. this.Result.Location = new System.Drawing.Point(8, 296);
  63. this.Result.Name = "Result";
  64. this.Result.Size = new System.Drawing.Size(1039, 344);
  65. this.Result.TabIndex = 3;
  66. this.Result.Text = "";
  67. //
  68. // label1
  69. //
  70. this.label1.AutoSize = true;
  71. this.label1.Location = new System.Drawing.Point(12, 13);
  72. this.label1.Name = "label1";
  73. this.label1.Size = new System.Drawing.Size(106, 24);
  74. this.label1.TabIndex = 4;
  75. this.label1.Text = "返回数据";
  76. //
  77. // label2
  78. //
  79. this.label2.AutoSize = true;
  80. this.label2.Location = new System.Drawing.Point(12, 255);
  81. this.label2.Name = "label2";
  82. this.label2.Size = new System.Drawing.Size(106, 24);
  83. this.label2.TabIndex = 5;
  84. this.label2.Text = "解析结果";
  85. //
  86. // Form1
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(1059, 693);
  91. this.Controls.Add(this.label2);
  92. this.Controls.Add(this.label1);
  93. this.Controls.Add(this.Result);
  94. this.Controls.Add(this.Analysis);
  95. this.Controls.Add(this.ReturnData);
  96. this.Margin = new System.Windows.Forms.Padding(6);
  97. this.Name = "Form1";
  98. this.Text = "Form1";
  99. this.Load += new System.EventHandler(this.Form1_Load);
  100. this.ResumeLayout(false);
  101. this.PerformLayout();
  102. }
  103. #endregion
  104. private System.Windows.Forms.RichTextBox ReturnData;
  105. private System.Windows.Forms.Button Analysis;
  106. private System.Windows.Forms.RichTextBox Result;
  107. private System.Windows.Forms.Label label1;
  108. private System.Windows.Forms.Label label2;
  109. }
  110. }