| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- namespace FileWatcher
- {
- partial class Form3
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.button1 = new System.Windows.Forms.Button();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.richTextBox2 = new System.Windows.Forms.RichTextBox();
- this.SuspendLayout();
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(487, 60);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(105, 40);
- this.button1.TabIndex = 4;
- this.button1.Text = "获取";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(53, 60);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(392, 35);
- this.textBox1.TabIndex = 3;
- this.textBox1.Text = "C:\\Users\\callm\\Desktop\\";
- //
- // richTextBox1
- //
- this.richTextBox1.Location = new System.Drawing.Point(-43, -88);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(100, 96);
- this.richTextBox1.TabIndex = 5;
- this.richTextBox1.Text = "";
- //
- // richTextBox2
- //
- this.richTextBox2.Location = new System.Drawing.Point(53, 160);
- this.richTextBox2.Name = "richTextBox2";
- this.richTextBox2.Size = new System.Drawing.Size(379, 372);
- this.richTextBox2.TabIndex = 6;
- this.richTextBox2.Text = "";
- //
- // Form3
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(686, 624);
- this.Controls.Add(this.richTextBox2);
- this.Controls.Add(this.richTextBox1);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.textBox1);
- this.Name = "Form3";
- this.Text = "Form3";
- this.Load += new System.EventHandler(this.Form3_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.RichTextBox richTextBox1;
- private System.Windows.Forms.RichTextBox richTextBox2;
- }
- }
|