AutoAnalysisXmlByStep.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. namespace FileWatcher
  2. {
  3. partial class AutoAnalysisXmlByStep
  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.components = new System.ComponentModel.Container();
  29. this.XmlWatcher = new System.IO.FileSystemWatcher();
  30. this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog();
  31. this.StartWatch = new System.Windows.Forms.Button();
  32. this.StopWatch = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.FolderPath = new System.Windows.Forms.TextBox();
  35. this.ChooseFolder = new System.Windows.Forms.Button();
  36. this.OperateResult = new System.Windows.Forms.RichTextBox();
  37. this.Clean = new System.Windows.Forms.Button();
  38. this.label4 = new System.Windows.Forms.Label();
  39. this.Master = new System.Windows.Forms.ComboBox();
  40. this.AutoStart = new System.Windows.Forms.CheckBox();
  41. this.Timer = new System.Windows.Forms.Timer(this.components);
  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(290, 557);
  55. this.StartWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  56. this.StartWatch.Name = "StartWatch";
  57. this.StartWatch.Size = new System.Drawing.Size(128, 56);
  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.Enabled = false;
  66. this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  67. this.StopWatch.Location = new System.Drawing.Point(498, 557);
  68. this.StopWatch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  69. this.StopWatch.Name = "StopWatch";
  70. this.StopWatch.Size = new System.Drawing.Size(128, 56);
  71. this.StopWatch.TabIndex = 1;
  72. this.StopWatch.Text = "停止监控";
  73. this.StopWatch.UseVisualStyleBackColor = true;
  74. this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
  75. //
  76. // label1
  77. //
  78. this.label1.AutoSize = true;
  79. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  80. this.label1.Location = new System.Drawing.Point(48, 350);
  81. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  82. this.label1.Name = "label1";
  83. this.label1.Size = new System.Drawing.Size(162, 38);
  84. this.label1.TabIndex = 2;
  85. this.label1.Text = "监控文件夹";
  86. //
  87. // FolderPath
  88. //
  89. this.FolderPath.Enabled = false;
  90. this.FolderPath.Location = new System.Drawing.Point(218, 350);
  91. this.FolderPath.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  92. this.FolderPath.Name = "FolderPath";
  93. this.FolderPath.Size = new System.Drawing.Size(436, 35);
  94. this.FolderPath.TabIndex = 3;
  95. //
  96. // ChooseFolder
  97. //
  98. this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  99. this.ChooseFolder.Location = new System.Drawing.Point(686, 344);
  100. this.ChooseFolder.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  101. this.ChooseFolder.Name = "ChooseFolder";
  102. this.ChooseFolder.Size = new System.Drawing.Size(156, 48);
  103. this.ChooseFolder.TabIndex = 6;
  104. this.ChooseFolder.Text = "选择文件夹";
  105. this.ChooseFolder.UseVisualStyleBackColor = true;
  106. this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
  107. //
  108. // OperateResult
  109. //
  110. this.OperateResult.Location = new System.Drawing.Point(892, 22);
  111. this.OperateResult.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  112. this.OperateResult.Name = "OperateResult";
  113. this.OperateResult.Size = new System.Drawing.Size(517, 535);
  114. this.OperateResult.TabIndex = 7;
  115. this.OperateResult.Text = "";
  116. //
  117. // Clean
  118. //
  119. this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  120. this.Clean.Location = new System.Drawing.Point(1096, 580);
  121. this.Clean.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  122. this.Clean.Name = "Clean";
  123. this.Clean.Size = new System.Drawing.Size(112, 48);
  124. this.Clean.TabIndex = 8;
  125. this.Clean.Text = "清除";
  126. this.Clean.UseVisualStyleBackColor = true;
  127. this.Clean.Click += new System.EventHandler(this.Clean_Click);
  128. //
  129. // label4
  130. //
  131. this.label4.AutoSize = true;
  132. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  133. this.label4.Location = new System.Drawing.Point(54, 46);
  134. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  135. this.label4.Name = "label4";
  136. this.label4.Size = new System.Drawing.Size(133, 38);
  137. this.label4.TabIndex = 14;
  138. this.label4.Text = "账套选择";
  139. this.label4.Visible = false;
  140. //
  141. // Master
  142. //
  143. this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  144. this.Master.FormattingEnabled = true;
  145. this.Master.Location = new System.Drawing.Point(224, 46);
  146. this.Master.Margin = new System.Windows.Forms.Padding(6);
  147. this.Master.Name = "Master";
  148. this.Master.Size = new System.Drawing.Size(436, 32);
  149. this.Master.TabIndex = 15;
  150. this.Master.Visible = false;
  151. //
  152. // AutoStart
  153. //
  154. this.AutoStart.AutoSize = true;
  155. this.AutoStart.Location = new System.Drawing.Point(686, 51);
  156. this.AutoStart.Margin = new System.Windows.Forms.Padding(6);
  157. this.AutoStart.Name = "AutoStart";
  158. this.AutoStart.Size = new System.Drawing.Size(186, 28);
  159. this.AutoStart.TabIndex = 16;
  160. this.AutoStart.Text = "开机自动启动";
  161. this.AutoStart.UseVisualStyleBackColor = true;
  162. this.AutoStart.Visible = false;
  163. this.AutoStart.CheckedChanged += new System.EventHandler(this.AutoStart_CheckedChanged);
  164. //
  165. // Timer
  166. //
  167. this.Timer.Interval = 10000;
  168. this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
  169. //
  170. // AutoAnalysisXmlByStep
  171. //
  172. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  173. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  174. this.ClientSize = new System.Drawing.Size(1443, 640);
  175. this.Controls.Add(this.AutoStart);
  176. this.Controls.Add(this.Master);
  177. this.Controls.Add(this.label4);
  178. this.Controls.Add(this.Clean);
  179. this.Controls.Add(this.OperateResult);
  180. this.Controls.Add(this.ChooseFolder);
  181. this.Controls.Add(this.FolderPath);
  182. this.Controls.Add(this.label1);
  183. this.Controls.Add(this.StopWatch);
  184. this.Controls.Add(this.StartWatch);
  185. this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
  186. this.MaximizeBox = false;
  187. this.Name = "AutoAnalysisXmlByStep";
  188. this.Text = "UAS自动过站解析器 2022-07-20 15:05";
  189. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  190. this.Load += new System.EventHandler(this.Form1_Load);
  191. ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
  192. this.ResumeLayout(false);
  193. this.PerformLayout();
  194. }
  195. #endregion
  196. private System.IO.FileSystemWatcher XmlWatcher;
  197. private System.Windows.Forms.FolderBrowserDialog XmlFolder;
  198. private System.Windows.Forms.Button StopWatch;
  199. private System.Windows.Forms.Button StartWatch;
  200. private System.Windows.Forms.Label label1;
  201. private System.Windows.Forms.TextBox FolderPath;
  202. private System.Windows.Forms.Button ChooseFolder;
  203. private System.Windows.Forms.RichTextBox OperateResult;
  204. private System.Windows.Forms.Button Clean;
  205. private System.Windows.Forms.ComboBox Master;
  206. private System.Windows.Forms.Label label4;
  207. private System.Windows.Forms.CheckBox AutoStart;
  208. private System.Windows.Forms.Timer Timer;
  209. }
  210. }