Form1.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.提示 = new System.Windows.Forms.NotifyIcon();
  30. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.timer1 = new System.Windows.Forms.Timer();
  33. this.SuspendLayout();
  34. //
  35. // 提示
  36. //
  37. this.提示.Icon = ((System.Drawing.Icon)(resources.GetObject("提示.Icon")));
  38. this.提示.Text = "提示";
  39. this.提示.Visible = true;
  40. //
  41. // richTextBox1
  42. //
  43. this.richTextBox1.Location = new System.Drawing.Point(12, 12);
  44. this.richTextBox1.Name = "richTextBox1";
  45. this.richTextBox1.Size = new System.Drawing.Size(544, 457);
  46. this.richTextBox1.TabIndex = 0;
  47. this.richTextBox1.Text = "";
  48. //
  49. // button2
  50. //
  51. this.button2.Location = new System.Drawing.Point(425, 479);
  52. this.button2.Name = "button2";
  53. this.button2.Size = new System.Drawing.Size(111, 35);
  54. this.button2.TabIndex = 2;
  55. this.button2.Text = "解析";
  56. this.button2.UseVisualStyleBackColor = true;
  57. this.button2.Visible = false;
  58. this.button2.Click += new System.EventHandler(this.button2_Click);
  59. //
  60. // Form1
  61. //
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(568, 522);
  65. this.Controls.Add(this.button2);
  66. this.Controls.Add(this.richTextBox1);
  67. this.Margin = new System.Windows.Forms.Padding(6);
  68. this.Name = "Form1";
  69. this.Text = "Form1";
  70. this.Load += new System.EventHandler(this.Form1_Load);
  71. this.ResumeLayout(false);
  72. }
  73. #endregion
  74. private System.Windows.Forms.NotifyIcon 提示;
  75. private System.Windows.Forms.RichTextBox richTextBox1;
  76. private System.Windows.Forms.Button button2;
  77. private System.Windows.Forms.Timer timer1;
  78. }
  79. }