Form1.Designer.cs 12 KB

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