Form1.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace FileWatcher
  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.components = new System.ComponentModel.Container();
  29. this.FileWatcher = new System.IO.FileSystemWatcher();
  30. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.timer2 = new System.Windows.Forms.Timer(this.components);
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.textBox1 = new System.Windows.Forms.TextBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.FileWatcher)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // FileWatcher
  39. //
  40. this.FileWatcher.EnableRaisingEvents = true;
  41. this.FileWatcher.IncludeSubdirectories = true;
  42. this.FileWatcher.SynchronizingObject = this;
  43. //
  44. // richTextBox1
  45. //
  46. this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47. | System.Windows.Forms.AnchorStyles.Left)
  48. | System.Windows.Forms.AnchorStyles.Right)));
  49. this.richTextBox1.Location = new System.Drawing.Point(24, 24);
  50. this.richTextBox1.Margin = new System.Windows.Forms.Padding(6);
  51. this.richTextBox1.Name = "richTextBox1";
  52. this.richTextBox1.Size = new System.Drawing.Size(1350, 778);
  53. this.richTextBox1.TabIndex = 0;
  54. this.richTextBox1.Text = "";
  55. //
  56. // timer1
  57. //
  58. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  59. //
  60. // timer2
  61. //
  62. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  63. //
  64. // button1
  65. //
  66. this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  67. this.button1.Location = new System.Drawing.Point(1259, 809);
  68. this.button1.Name = "button1";
  69. this.button1.Size = new System.Drawing.Size(115, 40);
  70. this.button1.TabIndex = 1;
  71. this.button1.Text = "解析";
  72. this.button1.UseVisualStyleBackColor = true;
  73. this.button1.Click += new System.EventHandler(this.button1_Click);
  74. //
  75. // textBox1
  76. //
  77. this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  78. this.textBox1.Location = new System.Drawing.Point(24, 811);
  79. this.textBox1.Name = "textBox1";
  80. this.textBox1.Size = new System.Drawing.Size(1229, 35);
  81. this.textBox1.TabIndex = 2;
  82. //
  83. // Form1
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.ClientSize = new System.Drawing.Size(1402, 856);
  88. this.Controls.Add(this.textBox1);
  89. this.Controls.Add(this.button1);
  90. this.Controls.Add(this.richTextBox1);
  91. this.Margin = new System.Windows.Forms.Padding(6);
  92. this.Name = "Form1";
  93. this.Text = "Form1";
  94. this.Load += new System.EventHandler(this.Form1_Load);
  95. ((System.ComponentModel.ISupportInitialize)(this.FileWatcher)).EndInit();
  96. this.ResumeLayout(true);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.IO.FileSystemWatcher FileWatcher;
  101. private System.Windows.Forms.RichTextBox richTextBox1;
  102. private System.Windows.Forms.Timer timer1;
  103. private System.Windows.Forms.Timer timer2;
  104. private System.Windows.Forms.Button button1;
  105. private System.Windows.Forms.TextBox textBox1;
  106. }
  107. }