AutoAnalysisXml.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. namespace UAS_XmlAnalysor
  2. {
  3. partial class AutoAnalysisXml
  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. this.AutoStart = new System.Windows.Forms.CheckBox();
  45. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
  46. this.SuspendLayout();
  47. //
  48. // XmlWatcher
  49. //
  50. this.XmlWatcher.EnableRaisingEvents = true;
  51. this.XmlWatcher.Filter = "*.xml";
  52. this.XmlWatcher.SynchronizingObject = this;
  53. //
  54. // StartWatch
  55. //
  56. this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  57. this.StartWatch.Location = new System.Drawing.Point(193, 320);
  58. this.StartWatch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  59. this.StartWatch.Name = "StartWatch";
  60. this.StartWatch.Size = new System.Drawing.Size(85, 35);
  61. this.StartWatch.TabIndex = 0;
  62. this.StartWatch.Text = "开始监控";
  63. this.StartWatch.UseVisualStyleBackColor = true;
  64. this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
  65. //
  66. // StopWatch
  67. //
  68. this.StopWatch.Enabled = false;
  69. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  70. this.StopWatch.Location = new System.Drawing.Point(332, 320);
  71. this.StopWatch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  72. this.StopWatch.Name = "StopWatch";
  73. this.StopWatch.Size = new System.Drawing.Size(85, 35);
  74. this.StopWatch.TabIndex = 1;
  75. this.StopWatch.Text = "停止监控";
  76. this.StopWatch.UseVisualStyleBackColor = true;
  77. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  78. //
  79. // label1
  80. //
  81. this.label1.AutoSize = true;
  82. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  83. this.label1.Location = new System.Drawing.Point(36, 174);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(107, 25);
  86. this.label1.TabIndex = 2;
  87. this.label1.Text = "监控文件夹";
  88. //
  89. // FolderPath
  90. //
  91. this.FolderPath.Enabled = false;
  92. this.FolderPath.Location = new System.Drawing.Point(149, 174);
  93. this.FolderPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  94. this.FolderPath.Name = "FolderPath";
  95. this.FolderPath.Size = new System.Drawing.Size(292, 25);
  96. this.FolderPath.TabIndex = 3;
  97. //
  98. // ChooseFolder
  99. //
  100. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  101. this.ChooseFolder.Location = new System.Drawing.Point(461, 174);
  102. this.ChooseFolder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  103. this.ChooseFolder.Name = "ChooseFolder";
  104. this.ChooseFolder.Size = new System.Drawing.Size(104, 30);
  105. this.ChooseFolder.TabIndex = 6;
  106. this.ChooseFolder.Text = "选择文件夹";
  107. this.ChooseFolder.UseVisualStyleBackColor = true;
  108. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  109. //
  110. // OperateResult
  111. //
  112. this.OperateResult.Location = new System.Drawing.Point(595, 14);
  113. this.OperateResult.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  114. this.OperateResult.Name = "OperateResult";
  115. this.OperateResult.Size = new System.Drawing.Size(280, 336);
  116. this.OperateResult.TabIndex = 7;
  117. this.OperateResult.Text = "";
  118. //
  119. // Clean
  120. //
  121. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  122. this.Clean.Location = new System.Drawing.Point(699, 359);
  123. this.Clean.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  124. this.Clean.Name = "Clean";
  125. this.Clean.Size = new System.Drawing.Size(75, 30);
  126. this.Clean.TabIndex = 8;
  127. this.Clean.Text = "清除";
  128. this.Clean.UseVisualStyleBackColor = true;
  129. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  130. //
  131. // ChooseBackUpFolder
  132. //
  133. this.ChooseBackUpFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  134. this.ChooseBackUpFolder.Location = new System.Drawing.Point(461, 251);
  135. this.ChooseBackUpFolder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  136. this.ChooseBackUpFolder.Name = "ChooseBackUpFolder";
  137. this.ChooseBackUpFolder.Size = new System.Drawing.Size(104, 30);
  138. this.ChooseBackUpFolder.TabIndex = 11;
  139. this.ChooseBackUpFolder.Text = "选择文件夹";
  140. this.ChooseBackUpFolder.UseVisualStyleBackColor = true;
  141. this.ChooseBackUpFolder.Click += new System.EventHandler(this.ChooseBackUpFolder_Click);
  142. //
  143. // BackUpFolderPath
  144. //
  145. this.BackUpFolderPath.Enabled = false;
  146. this.BackUpFolderPath.Location = new System.Drawing.Point(149, 251);
  147. this.BackUpFolderPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  148. this.BackUpFolderPath.Name = "BackUpFolderPath";
  149. this.BackUpFolderPath.Size = new System.Drawing.Size(292, 25);
  150. this.BackUpFolderPath.TabIndex = 10;
  151. //
  152. // label2
  153. //
  154. this.label2.AutoSize = true;
  155. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  156. this.label2.Location = new System.Drawing.Point(36, 251);
  157. this.label2.Name = "label2";
  158. this.label2.Size = new System.Drawing.Size(107, 25);
  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(36, 100);
  167. this.label3.Name = "label3";
  168. this.label3.Size = new System.Drawing.Size(88, 25);
  169. this.label3.TabIndex = 12;
  170. this.label3.Text = "岗位资源";
  171. //
  172. // Source
  173. //
  174. this.Source.Location = new System.Drawing.Point(149, 99);
  175. this.Source.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  176. this.Source.Name = "Source";
  177. this.Source.Size = new System.Drawing.Size(292, 25);
  178. this.Source.TabIndex = 13;
  179. //
  180. // label4
  181. //
  182. this.label4.AutoSize = true;
  183. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  184. this.label4.Location = new System.Drawing.Point(36, 29);
  185. this.label4.Name = "label4";
  186. this.label4.Size = new System.Drawing.Size(88, 25);
  187. this.label4.TabIndex = 14;
  188. this.label4.Text = "账套选择";
  189. //
  190. // Master
  191. //
  192. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  193. this.Master.FormattingEnabled = true;
  194. this.Master.Location = new System.Drawing.Point(149, 29);
  195. this.Master.Margin = new System.Windows.Forms.Padding(4);
  196. this.Master.Name = "Master";
  197. this.Master.Size = new System.Drawing.Size(292, 23);
  198. this.Master.TabIndex = 15;
  199. //
  200. // AutoStart
  201. //
  202. this.AutoStart.AutoSize = true;
  203. this.AutoStart.Location = new System.Drawing.Point(457, 32);
  204. this.AutoStart.Margin = new System.Windows.Forms.Padding(4);
  205. this.AutoStart.Name = "AutoStart";
  206. this.AutoStart.Size = new System.Drawing.Size(119, 19);
  207. this.AutoStart.TabIndex = 16;
  208. this.AutoStart.Text = "开机自动启动";
  209. this.AutoStart.UseVisualStyleBackColor = true;
  210. this.AutoStart.CheckedChanged += new System.EventHandler(this.AutoStart_CheckedChanged);
  211. //
  212. // Form1
  213. //
  214. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  215. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  216. this.ClientSize = new System.Drawing.Size(887, 395);
  217. this.Controls.Add(this.AutoStart);
  218. this.Controls.Add(this.Master);
  219. this.Controls.Add(this.label4);
  220. this.Controls.Add(this.Source);
  221. this.Controls.Add(this.label3);
  222. this.Controls.Add(this.ChooseBackUpFolder);
  223. this.Controls.Add(this.BackUpFolderPath);
  224. this.Controls.Add(this.label2);
  225. this.Controls.Add(this.Clean);
  226. this.Controls.Add(this.OperateResult);
  227. this.Controls.Add(this.ChooseFolder);
  228. this.Controls.Add(this.FolderPath);
  229. this.Controls.Add(this.label1);
  230. this.Controls.Add(this.StopWatch);
  231. this.Controls.Add(this.StartWatch);
  232. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  233. this.MaximizeBox = false;
  234. this.Name = "Form1";
  235. this.Text = "UAS_XML解析器";
  236. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  237. this.Load += new System.EventHandler(this.Form1_Load);
  238. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  239. this.ResumeLayout(false);
  240. this.PerformLayout();
  241. }
  242. #endregion
  243. private System.IO.FileSystemWatcher XmlWatcher;
  244. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  245. private System.Windows.Forms.Button StopWatch;
  246. private System.Windows.Forms.Button StartWatch;
  247. private System.Windows.Forms.Label label1;
  248. private System.Windows.Forms.TextBox FolderPath;
  249. private System.Windows.Forms.Button ChooseFolder;
  250. private System.Windows.Forms.RichTextBox OperateResult;
  251. private System.Windows.Forms.Button Clean;
  252. private System.Windows.Forms.Button ChooseBackUpFolder;
  253. private System.Windows.Forms.TextBox BackUpFolderPath;
  254. private System.Windows.Forms.Label label2;
  255. private System.Windows.Forms.TextBox Source;
  256. private System.Windows.Forms.Label label3;
  257. private System.Windows.Forms.ComboBox Master;
  258. private System.Windows.Forms.Label label4;
  259. private System.Windows.Forms.CheckBox AutoStart;
  260. }
  261. }