namespace UAS_XmlAnalysor { partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.XmlWatcher = new System.IO.FileSystemWatcher(); this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog(); this.StartWatch = new System.Windows.Forms.Button(); this.StopWatch = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.FolderPath = new System.Windows.Forms.TextBox(); this.TimeSpan = new System.Windows.Forms.NumericUpDown(); this.label2 = new System.Windows.Forms.Label(); this.ChooseFolder = new System.Windows.Forms.Button(); this.OperateResult = new System.Windows.Forms.RichTextBox(); this.Clean = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeSpan)).BeginInit(); this.SuspendLayout(); // // XmlWatcher // this.XmlWatcher.EnableRaisingEvents = true; this.XmlWatcher.Filter = "*.xml"; this.XmlWatcher.SynchronizingObject = this; // // StartWatch // this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.StartWatch.Location = new System.Drawing.Point(193, 249); this.StartWatch.Name = "StartWatch"; this.StartWatch.Size = new System.Drawing.Size(85, 35); this.StartWatch.TabIndex = 0; this.StartWatch.Text = "开始监控"; this.StartWatch.UseVisualStyleBackColor = true; this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click); // // StopWatch // this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.StopWatch.Location = new System.Drawing.Point(332, 249); this.StopWatch.Name = "StopWatch"; this.StopWatch.Size = new System.Drawing.Size(85, 35); this.StopWatch.TabIndex = 1; this.StopWatch.Text = "停止监控"; this.StopWatch.UseVisualStyleBackColor = true; this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.Location = new System.Drawing.Point(36, 94); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(107, 25); this.label1.TabIndex = 2; this.label1.Text = "检测文件夹"; // // FolderPath // this.FolderPath.Location = new System.Drawing.Point(149, 94); this.FolderPath.Name = "FolderPath"; this.FolderPath.Size = new System.Drawing.Size(292, 25); this.FolderPath.TabIndex = 3; // // TimeSpan // this.TimeSpan.Location = new System.Drawing.Point(149, 168); this.TimeSpan.Name = "TimeSpan"; this.TimeSpan.Size = new System.Drawing.Size(292, 25); this.TimeSpan.TabIndex = 4; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label2.Location = new System.Drawing.Point(36, 168); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(88, 25); this.label2.TabIndex = 5; this.label2.Text = "时间间隔"; // // ChooseFolder // this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.ChooseFolder.Location = new System.Drawing.Point(462, 94); this.ChooseFolder.Name = "ChooseFolder"; this.ChooseFolder.Size = new System.Drawing.Size(104, 30); this.ChooseFolder.TabIndex = 6; this.ChooseFolder.Text = "选择文件夹"; this.ChooseFolder.UseVisualStyleBackColor = true; this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click); // // OperateResult // this.OperateResult.Location = new System.Drawing.Point(628, 12); this.OperateResult.Name = "OperateResult"; this.OperateResult.Size = new System.Drawing.Size(228, 267); this.OperateResult.TabIndex = 7; this.OperateResult.Text = ""; // // Clean // this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Clean.Location = new System.Drawing.Point(705, 288); this.Clean.Name = "Clean"; this.Clean.Size = new System.Drawing.Size(74, 30); this.Clean.TabIndex = 8; this.Clean.Text = "清除"; this.Clean.UseVisualStyleBackColor = true; this.Clean.Click += new System.EventHandler(this.Clean_Click); // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label3.Location = new System.Drawing.Point(457, 168); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(50, 25); this.label3.TabIndex = 9; this.label3.Text = "分钟"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(887, 324); this.Controls.Add(this.label3); this.Controls.Add(this.Clean); this.Controls.Add(this.OperateResult); this.Controls.Add(this.ChooseFolder); this.Controls.Add(this.label2); this.Controls.Add(this.TimeSpan); this.Controls.Add(this.FolderPath); this.Controls.Add(this.label1); this.Controls.Add(this.StopWatch); this.Controls.Add(this.StartWatch); this.Name = "Form1"; this.Text = "测试数据监测"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeSpan)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.IO.FileSystemWatcher XmlWatcher; private System.Windows.Forms.FolderBrowserDialog XmlFolder; private System.Windows.Forms.Button StopWatch; private System.Windows.Forms.Button StartWatch; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox FolderPath; private System.Windows.Forms.NumericUpDown TimeSpan; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button ChooseFolder; private System.Windows.Forms.RichTextBox OperateResult; private System.Windows.Forms.Button Clean; private System.Windows.Forms.Label label3; } }