|
@@ -28,6 +28,7 @@
|
|
|
/// </summary>
|
|
|
private void InitializeComponent()
|
|
|
{
|
|
|
+ this.components = new System.ComponentModel.Container();
|
|
|
this.XmlWatcher = new System.IO.FileSystemWatcher();
|
|
|
this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog();
|
|
|
this.StartWatch = new System.Windows.Forms.Button();
|
|
@@ -46,6 +47,7 @@
|
|
|
this.AutoStart = new System.Windows.Forms.CheckBox();
|
|
|
this.ma_code = new System.Windows.Forms.TextBox();
|
|
|
this.BatchAnalysus = new System.Windows.Forms.Button();
|
|
|
+ this.Timer = new System.Windows.Forms.Timer(this.components);
|
|
|
((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
@@ -188,7 +190,7 @@
|
|
|
this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
|
this.Master.FormattingEnabled = true;
|
|
|
this.Master.Location = new System.Drawing.Point(149, 29);
|
|
|
- this.Master.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
|
+ this.Master.Margin = new System.Windows.Forms.Padding(4);
|
|
|
this.Master.Name = "Master";
|
|
|
this.Master.Size = new System.Drawing.Size(292, 23);
|
|
|
this.Master.TabIndex = 15;
|
|
@@ -197,7 +199,7 @@
|
|
|
//
|
|
|
this.AutoStart.AutoSize = true;
|
|
|
this.AutoStart.Location = new System.Drawing.Point(457, 32);
|
|
|
- this.AutoStart.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
|
+ this.AutoStart.Margin = new System.Windows.Forms.Padding(4);
|
|
|
this.AutoStart.Name = "AutoStart";
|
|
|
this.AutoStart.Size = new System.Drawing.Size(119, 19);
|
|
|
this.AutoStart.TabIndex = 16;
|
|
@@ -225,6 +227,11 @@
|
|
|
this.BatchAnalysus.UseVisualStyleBackColor = true;
|
|
|
this.BatchAnalysus.Click += new System.EventHandler(this.BatchAnalysus_Click);
|
|
|
//
|
|
|
+ // Timer
|
|
|
+ //
|
|
|
+ this.Timer.Interval = 10000;
|
|
|
+ this.Timer.Tick += new System.EventHandler(this.Timer_Tick);
|
|
|
+ //
|
|
|
// AutoAnalysisXml
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
@@ -278,6 +285,7 @@
|
|
|
private System.Windows.Forms.CheckBox AutoStart;
|
|
|
private System.Windows.Forms.TextBox ma_code;
|
|
|
private System.Windows.Forms.Button BatchAnalysus;
|
|
|
+ private System.Windows.Forms.Timer Timer;
|
|
|
}
|
|
|
}
|
|
|
|