Form1.Designer.cs 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. namespace UAS_XmlAnalysor
  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.XmlWatcher = new System.IO.FileSystemWatcher();
  29. this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog();
  30. this.StartWatch = new System.Windows.Forms.Button();
  31. this.StopWatch = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.FolderPath = new System.Windows.Forms.TextBox();
  34. this.TimeSpan = new System.Windows.Forms.NumericUpDown();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.ChooseFolder = new System.Windows.Forms.Button();
  37. this.OperateResult = new System.Windows.Forms.RichTextBox();
  38. this.Clean = new System.Windows.Forms.Button();
  39. this.label3 = new System.Windows.Forms.Label();
  40. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  41. ((System.ComponentModel.ISupportInitialize)(this.TimeSpan)).BeginInit();
  42. this.SuspendLayout();
  43. //
  44. // XmlWatcher
  45. //
  46. this.XmlWatcher.EnableRaisingEvents = true;
  47. this.XmlWatcher.Filter = "*.xml";
  48. this.XmlWatcher.SynchronizingObject = this;
  49. //
  50. // StartWatch
  51. //
  52. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.StartWatch.Location = new System.Drawing.Point(193, 249);
  54. this.StartWatch.Name = "StartWatch";
  55. this.StartWatch.Size = new System.Drawing.Size(85, 35);
  56. this.StartWatch.TabIndex = 0;
  57. this.StartWatch.Text = "开始监控";
  58. this.StartWatch.UseVisualStyleBackColor = true;
  59. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  60. //
  61. // StopWatch
  62. //
  63. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.StopWatch.Location = new System.Drawing.Point(332, 249);
  65. this.StopWatch.Name = "StopWatch";
  66. this.StopWatch.Size = new System.Drawing.Size(85, 35);
  67. this.StopWatch.TabIndex = 1;
  68. this.StopWatch.Text = "停止监控";
  69. this.StopWatch.UseVisualStyleBackColor = true;
  70. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  71. //
  72. // label1
  73. //
  74. this.label1.AutoSize = true;
  75. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  76. this.label1.Location = new System.Drawing.Point(36, 94);
  77. this.label1.Name = "label1";
  78. this.label1.Size = new System.Drawing.Size(107, 25);
  79. this.label1.TabIndex = 2;
  80. this.label1.Text = "检测文件夹";
  81. //
  82. // FolderPath
  83. //
  84. this.FolderPath.Location = new System.Drawing.Point(149, 94);
  85. this.FolderPath.Name = "FolderPath";
  86. this.FolderPath.Size = new System.Drawing.Size(292, 25);
  87. this.FolderPath.TabIndex = 3;
  88. //
  89. // TimeSpan
  90. //
  91. this.TimeSpan.Location = new System.Drawing.Point(149, 168);
  92. this.TimeSpan.Name = "TimeSpan";
  93. this.TimeSpan.Size = new System.Drawing.Size(292, 25);
  94. this.TimeSpan.TabIndex = 4;
  95. //
  96. // label2
  97. //
  98. this.label2.AutoSize = true;
  99. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  100. this.label2.Location = new System.Drawing.Point(36, 168);
  101. this.label2.Name = "label2";
  102. this.label2.Size = new System.Drawing.Size(88, 25);
  103. this.label2.TabIndex = 5;
  104. this.label2.Text = "时间间隔";
  105. //
  106. // ChooseFolder
  107. //
  108. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  109. this.ChooseFolder.Location = new System.Drawing.Point(462, 94);
  110. this.ChooseFolder.Name = "ChooseFolder";
  111. this.ChooseFolder.Size = new System.Drawing.Size(104, 30);
  112. this.ChooseFolder.TabIndex = 6;
  113. this.ChooseFolder.Text = "选择文件夹";
  114. this.ChooseFolder.UseVisualStyleBackColor = true;
  115. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  116. //
  117. // OperateResult
  118. //
  119. this.OperateResult.Location = new System.Drawing.Point(628, 12);
  120. this.OperateResult.Name = "OperateResult";
  121. this.OperateResult.Size = new System.Drawing.Size(228, 267);
  122. this.OperateResult.TabIndex = 7;
  123. this.OperateResult.Text = "";
  124. //
  125. // Clean
  126. //
  127. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  128. this.Clean.Location = new System.Drawing.Point(705, 288);
  129. this.Clean.Name = "Clean";
  130. this.Clean.Size = new System.Drawing.Size(74, 30);
  131. this.Clean.TabIndex = 8;
  132. this.Clean.Text = "清除";
  133. this.Clean.UseVisualStyleBackColor = true;
  134. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  135. //
  136. // label3
  137. //
  138. this.label3.AutoSize = true;
  139. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  140. this.label3.Location = new System.Drawing.Point(457, 168);
  141. this.label3.Name = "label3";
  142. this.label3.Size = new System.Drawing.Size(50, 25);
  143. this.label3.TabIndex = 9;
  144. this.label3.Text = "分钟";
  145. //
  146. // Form1
  147. //
  148. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  149. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  150. this.ClientSize = new System.Drawing.Size(887, 324);
  151. this.Controls.Add(this.label3);
  152. this.Controls.Add(this.Clean);
  153. this.Controls.Add(this.OperateResult);
  154. this.Controls.Add(this.ChooseFolder);
  155. this.Controls.Add(this.label2);
  156. this.Controls.Add(this.TimeSpan);
  157. this.Controls.Add(this.FolderPath);
  158. this.Controls.Add(this.label1);
  159. this.Controls.Add(this.StopWatch);
  160. this.Controls.Add(this.StartWatch);
  161. this.Name = "Form1";
  162. this.Text = "测试数据监测";
  163. this.Load += new System.EventHandler(this.Form1_Load);
  164. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  165. ((System.ComponentModel.ISupportInitialize)(this.TimeSpan)).EndInit();
  166. this.ResumeLayout(false);
  167. this.PerformLayout();
  168. }
  169. #endregion
  170. private System.IO.FileSystemWatcher XmlWatcher;
  171. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  172. private System.Windows.Forms.Button StopWatch;
  173. private System.Windows.Forms.Button StartWatch;
  174. private System.Windows.Forms.Label label1;
  175. private System.Windows.Forms.TextBox FolderPath;
  176. private System.Windows.Forms.NumericUpDown TimeSpan;
  177. private System.Windows.Forms.Label label2;
  178. private System.Windows.Forms.Button ChooseFolder;
  179. private System.Windows.Forms.RichTextBox OperateResult;
  180. private System.Windows.Forms.Button Clean;
  181. private System.Windows.Forms.Label label3;
  182. }
  183. }