Form1.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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.ChooseFolder = new System.Windows.Forms.Button();
  35. this.OperateResult = new System.Windows.Forms.RichTextBox();
  36. this.Clean = new System.Windows.Forms.Button();
  37. this.ChooseBackUpFolder = new System.Windows.Forms.Button();
  38. this.BackUpFolderPath = new System.Windows.Forms.TextBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.Source = new System.Windows.Forms.TextBox();
  42. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  43. this.SuspendLayout();
  44. //
  45. // XmlWatcher
  46. //
  47. this.XmlWatcher.EnableRaisingEvents = true;
  48. this.XmlWatcher.Filter = "*.xml";
  49. this.XmlWatcher.SynchronizingObject = this;
  50. //
  51. // StartWatch
  52. //
  53. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  54. this.StartWatch.Location = new System.Drawing.Point(145, 199);
  55. this.StartWatch.Margin = new System.Windows.Forms.Padding(2);
  56. this.StartWatch.Name = "StartWatch";
  57. this.StartWatch.Size = new System.Drawing.Size(64, 28);
  58. this.StartWatch.TabIndex = 0;
  59. this.StartWatch.Text = "开始监控";
  60. this.StartWatch.UseVisualStyleBackColor = true;
  61. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  62. //
  63. // StopWatch
  64. //
  65. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  66. this.StopWatch.Location = new System.Drawing.Point(249, 199);
  67. this.StopWatch.Margin = new System.Windows.Forms.Padding(2);
  68. this.StopWatch.Name = "StopWatch";
  69. this.StopWatch.Size = new System.Drawing.Size(64, 28);
  70. this.StopWatch.TabIndex = 1;
  71. this.StopWatch.Text = "停止监控";
  72. this.StopWatch.UseVisualStyleBackColor = true;
  73. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  74. //
  75. // label1
  76. //
  77. this.label1.AutoSize = true;
  78. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  79. this.label1.Location = new System.Drawing.Point(27, 82);
  80. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  81. this.label1.Name = "label1";
  82. this.label1.Size = new System.Drawing.Size(84, 20);
  83. this.label1.TabIndex = 2;
  84. this.label1.Text = "监控文件夹";
  85. //
  86. // FolderPath
  87. //
  88. this.FolderPath.Enabled = false;
  89. this.FolderPath.Location = new System.Drawing.Point(112, 82);
  90. this.FolderPath.Margin = new System.Windows.Forms.Padding(2);
  91. this.FolderPath.Name = "FolderPath";
  92. this.FolderPath.Size = new System.Drawing.Size(220, 21);
  93. this.FolderPath.TabIndex = 3;
  94. //
  95. // ChooseFolder
  96. //
  97. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  98. this.ChooseFolder.Location = new System.Drawing.Point(346, 82);
  99. this.ChooseFolder.Margin = new System.Windows.Forms.Padding(2);
  100. this.ChooseFolder.Name = "ChooseFolder";
  101. this.ChooseFolder.Size = new System.Drawing.Size(78, 24);
  102. this.ChooseFolder.TabIndex = 6;
  103. this.ChooseFolder.Text = "选择文件夹";
  104. this.ChooseFolder.UseVisualStyleBackColor = true;
  105. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  106. //
  107. // OperateResult
  108. //
  109. this.OperateResult.Location = new System.Drawing.Point(446, 10);
  110. this.OperateResult.Margin = new System.Windows.Forms.Padding(2);
  111. this.OperateResult.Name = "OperateResult";
  112. this.OperateResult.Size = new System.Drawing.Size(197, 214);
  113. this.OperateResult.TabIndex = 7;
  114. this.OperateResult.Text = "";
  115. //
  116. // Clean
  117. //
  118. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  119. this.Clean.Location = new System.Drawing.Point(516, 230);
  120. this.Clean.Margin = new System.Windows.Forms.Padding(2);
  121. this.Clean.Name = "Clean";
  122. this.Clean.Size = new System.Drawing.Size(56, 24);
  123. this.Clean.TabIndex = 8;
  124. this.Clean.Text = "清除";
  125. this.Clean.UseVisualStyleBackColor = true;
  126. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  127. //
  128. // ChooseBackUpFolder
  129. //
  130. this.ChooseBackUpFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  131. this.ChooseBackUpFolder.Location = new System.Drawing.Point(346, 144);
  132. this.ChooseBackUpFolder.Margin = new System.Windows.Forms.Padding(2);
  133. this.ChooseBackUpFolder.Name = "ChooseBackUpFolder";
  134. this.ChooseBackUpFolder.Size = new System.Drawing.Size(78, 24);
  135. this.ChooseBackUpFolder.TabIndex = 11;
  136. this.ChooseBackUpFolder.Text = "选择文件夹";
  137. this.ChooseBackUpFolder.UseVisualStyleBackColor = true;
  138. this.ChooseBackUpFolder.Click += new System.EventHandler(this.ChooseBackUpFolder_Click);
  139. //
  140. // BackUpFolderPath
  141. //
  142. this.BackUpFolderPath.Enabled = false;
  143. this.BackUpFolderPath.Location = new System.Drawing.Point(112, 144);
  144. this.BackUpFolderPath.Margin = new System.Windows.Forms.Padding(2);
  145. this.BackUpFolderPath.Name = "BackUpFolderPath";
  146. this.BackUpFolderPath.Size = new System.Drawing.Size(220, 21);
  147. this.BackUpFolderPath.TabIndex = 10;
  148. //
  149. // label2
  150. //
  151. this.label2.AutoSize = true;
  152. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  153. this.label2.Location = new System.Drawing.Point(27, 144);
  154. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  155. this.label2.Name = "label2";
  156. this.label2.Size = new System.Drawing.Size(84, 20);
  157. this.label2.TabIndex = 9;
  158. this.label2.Text = "备份文件夹";
  159. //
  160. // label3
  161. //
  162. this.label3.AutoSize = true;
  163. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  164. this.label3.Location = new System.Drawing.Point(27, 23);
  165. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  166. this.label3.Name = "label3";
  167. this.label3.Size = new System.Drawing.Size(69, 20);
  168. this.label3.TabIndex = 12;
  169. this.label3.Text = "岗位资源";
  170. //
  171. // Source
  172. //
  173. this.Source.Location = new System.Drawing.Point(112, 22);
  174. this.Source.Margin = new System.Windows.Forms.Padding(2);
  175. this.Source.Name = "Source";
  176. this.Source.Size = new System.Drawing.Size(220, 21);
  177. this.Source.TabIndex = 13;
  178. //
  179. // Form1
  180. //
  181. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  182. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  183. this.ClientSize = new System.Drawing.Size(665, 259);
  184. this.Controls.Add(this.Source);
  185. this.Controls.Add(this.label3);
  186. this.Controls.Add(this.ChooseBackUpFolder);
  187. this.Controls.Add(this.BackUpFolderPath);
  188. this.Controls.Add(this.label2);
  189. this.Controls.Add(this.Clean);
  190. this.Controls.Add(this.OperateResult);
  191. this.Controls.Add(this.ChooseFolder);
  192. this.Controls.Add(this.FolderPath);
  193. this.Controls.Add(this.label1);
  194. this.Controls.Add(this.StopWatch);
  195. this.Controls.Add(this.StartWatch);
  196. this.Margin = new System.Windows.Forms.Padding(2);
  197. this.Name = "Form1";
  198. this.Text = "测试数据监测";
  199. this.Load += new System.EventHandler(this.Form1_Load);
  200. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  201. this.ResumeLayout(false);
  202. this.PerformLayout();
  203. }
  204. #endregion
  205. private System.IO.FileSystemWatcher XmlWatcher;
  206. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  207. private System.Windows.Forms.Button StopWatch;
  208. private System.Windows.Forms.Button StartWatch;
  209. private System.Windows.Forms.Label label1;
  210. private System.Windows.Forms.TextBox FolderPath;
  211. private System.Windows.Forms.Button ChooseFolder;
  212. private System.Windows.Forms.RichTextBox OperateResult;
  213. private System.Windows.Forms.Button Clean;
  214. private System.Windows.Forms.Button ChooseBackUpFolder;
  215. private System.Windows.Forms.TextBox BackUpFolderPath;
  216. private System.Windows.Forms.Label label2;
  217. private System.Windows.Forms.TextBox Source;
  218. private System.Windows.Forms.Label label3;
  219. }
  220. }