Form3.Designer.cs 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. namespace FileWatcher
  2. {
  3. partial class Form3
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  31. this.richTextBox2 = new System.Windows.Forms.RichTextBox();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(487, 60);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(105, 40);
  39. this.button1.TabIndex = 4;
  40. this.button1.Text = "获取";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(53, 60);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(392, 35);
  49. this.textBox1.TabIndex = 3;
  50. this.textBox1.Text = "C:\\Users\\callm\\Desktop\\";
  51. //
  52. // richTextBox1
  53. //
  54. this.richTextBox1.Location = new System.Drawing.Point(-43, -88);
  55. this.richTextBox1.Name = "richTextBox1";
  56. this.richTextBox1.Size = new System.Drawing.Size(100, 96);
  57. this.richTextBox1.TabIndex = 5;
  58. this.richTextBox1.Text = "";
  59. //
  60. // richTextBox2
  61. //
  62. this.richTextBox2.Location = new System.Drawing.Point(53, 160);
  63. this.richTextBox2.Name = "richTextBox2";
  64. this.richTextBox2.Size = new System.Drawing.Size(379, 372);
  65. this.richTextBox2.TabIndex = 6;
  66. this.richTextBox2.Text = "";
  67. //
  68. // Form3
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  72. this.ClientSize = new System.Drawing.Size(686, 624);
  73. this.Controls.Add(this.richTextBox2);
  74. this.Controls.Add(this.richTextBox1);
  75. this.Controls.Add(this.button1);
  76. this.Controls.Add(this.textBox1);
  77. this.Name = "Form3";
  78. this.Text = "Form3";
  79. this.Load += new System.EventHandler(this.Form3_Load);
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.Button button1;
  85. private System.Windows.Forms.TextBox textBox1;
  86. private System.Windows.Forms.RichTextBox richTextBox1;
  87. private System.Windows.Forms.RichTextBox richTextBox2;
  88. }
  89. }