123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- namespace UAS_XmlAnalysor
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.XmlWatcher = new System.IO.FileSystemWatcher();
- this.XmlFolder = new System.Windows.Forms.FolderBrowserDialog();
- this.StartWatch = new System.Windows.Forms.Button();
- this.StopWatch = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.FolderPath = new System.Windows.Forms.TextBox();
- this.ChooseFolder = new System.Windows.Forms.Button();
- this.OperateResult = new System.Windows.Forms.RichTextBox();
- this.Clean = new System.Windows.Forms.Button();
- this.ChooseBackUpFolder = new System.Windows.Forms.Button();
- this.BackUpFolderPath = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.Master = new System.Windows.Forms.ComboBox();
- this.AutoStart = new System.Windows.Forms.CheckBox();
- this.ma_code = new System.Windows.Forms.TextBox();
- this.MakeCode_lable = new System.Windows.Forms.Label();
- ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).BeginInit();
- this.SuspendLayout();
- //
- // XmlWatcher
- //
- this.XmlWatcher.EnableRaisingEvents = true;
- this.XmlWatcher.Filter = "*.xml";
- this.XmlWatcher.SynchronizingObject = this;
- //
- // StartWatch
- //
- this.StartWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.StartWatch.Location = new System.Drawing.Point(145, 256);
- this.StartWatch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.StartWatch.Name = "StartWatch";
- this.StartWatch.Size = new System.Drawing.Size(64, 28);
- this.StartWatch.TabIndex = 0;
- this.StartWatch.Text = "开始监控";
- this.StartWatch.UseVisualStyleBackColor = true;
- this.StartWatch.Click += new System.EventHandler(this.StartWatch_Click);
- //
- // StopWatch
- //
- this.StopWatch.Enabled = false;
- this.StopWatch.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.StopWatch.Location = new System.Drawing.Point(249, 256);
- this.StopWatch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.StopWatch.Name = "StopWatch";
- this.StopWatch.Size = new System.Drawing.Size(64, 28);
- this.StopWatch.TabIndex = 1;
- this.StopWatch.Text = "停止监控";
- this.StopWatch.UseVisualStyleBackColor = true;
- this.StopWatch.Click += new System.EventHandler(this.StopWatch_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(27, 139);
- this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(84, 20);
- this.label1.TabIndex = 2;
- this.label1.Text = "监控文件夹";
- //
- // FolderPath
- //
- this.FolderPath.Enabled = false;
- this.FolderPath.Location = new System.Drawing.Point(112, 139);
- this.FolderPath.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.FolderPath.Name = "FolderPath";
- this.FolderPath.Size = new System.Drawing.Size(220, 21);
- this.FolderPath.TabIndex = 3;
- //
- // ChooseFolder
- //
- this.ChooseFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ChooseFolder.Location = new System.Drawing.Point(346, 139);
- this.ChooseFolder.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ChooseFolder.Name = "ChooseFolder";
- this.ChooseFolder.Size = new System.Drawing.Size(78, 24);
- this.ChooseFolder.TabIndex = 6;
- this.ChooseFolder.Text = "选择文件夹";
- this.ChooseFolder.UseVisualStyleBackColor = true;
- this.ChooseFolder.Click += new System.EventHandler(this.ChooseFolder_Click);
- //
- // OperateResult
- //
- this.OperateResult.Location = new System.Drawing.Point(446, 11);
- this.OperateResult.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.OperateResult.Name = "OperateResult";
- this.OperateResult.Size = new System.Drawing.Size(211, 270);
- this.OperateResult.TabIndex = 7;
- this.OperateResult.Text = "";
- //
- // Clean
- //
- this.Clean.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Clean.Location = new System.Drawing.Point(524, 287);
- this.Clean.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.Clean.Name = "Clean";
- this.Clean.Size = new System.Drawing.Size(56, 24);
- this.Clean.TabIndex = 8;
- this.Clean.Text = "清除";
- this.Clean.UseVisualStyleBackColor = true;
- this.Clean.Click += new System.EventHandler(this.Clean_Click);
- //
- // ChooseBackUpFolder
- //
- this.ChooseBackUpFolder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ChooseBackUpFolder.Location = new System.Drawing.Point(346, 201);
- this.ChooseBackUpFolder.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ChooseBackUpFolder.Name = "ChooseBackUpFolder";
- this.ChooseBackUpFolder.Size = new System.Drawing.Size(78, 24);
- this.ChooseBackUpFolder.TabIndex = 11;
- this.ChooseBackUpFolder.Text = "选择文件夹";
- this.ChooseBackUpFolder.UseVisualStyleBackColor = true;
- this.ChooseBackUpFolder.Click += new System.EventHandler(this.ChooseBackUpFolder_Click);
- //
- // BackUpFolderPath
- //
- this.BackUpFolderPath.Enabled = false;
- this.BackUpFolderPath.Location = new System.Drawing.Point(112, 201);
- this.BackUpFolderPath.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.BackUpFolderPath.Name = "BackUpFolderPath";
- this.BackUpFolderPath.Size = new System.Drawing.Size(220, 21);
- this.BackUpFolderPath.TabIndex = 10;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(27, 201);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(84, 20);
- this.label2.TabIndex = 9;
- this.label2.Text = "备份文件夹";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(27, 23);
- this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(69, 20);
- this.label4.TabIndex = 14;
- this.label4.Text = "账套选择";
- //
- // Master
- //
- this.Master.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.Master.FormattingEnabled = true;
- this.Master.Location = new System.Drawing.Point(112, 23);
- this.Master.Name = "Master";
- this.Master.Size = new System.Drawing.Size(220, 20);
- this.Master.TabIndex = 15;
- //
- // AutoStart
- //
- this.AutoStart.AutoSize = true;
- this.AutoStart.Location = new System.Drawing.Point(343, 26);
- this.AutoStart.Name = "AutoStart";
- this.AutoStart.Size = new System.Drawing.Size(96, 16);
- this.AutoStart.TabIndex = 16;
- this.AutoStart.Text = "开机自动启动";
- this.AutoStart.UseVisualStyleBackColor = true;
- this.AutoStart.CheckedChanged += new System.EventHandler(this.AutoStart_CheckedChanged);
- //
- // ma_code
- //
- this.ma_code.Location = new System.Drawing.Point(112, 87);
- this.ma_code.Margin = new System.Windows.Forms.Padding(2);
- this.ma_code.Name = "ma_code";
- this.ma_code.Size = new System.Drawing.Size(220, 21);
- this.ma_code.TabIndex = 20;
- //
- // MakeCode_lable
- //
- this.MakeCode_lable.AutoSize = true;
- this.MakeCode_lable.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MakeCode_lable.Location = new System.Drawing.Point(27, 87);
- this.MakeCode_lable.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.MakeCode_lable.Name = "MakeCode_lable";
- this.MakeCode_lable.Size = new System.Drawing.Size(54, 20);
- this.MakeCode_lable.TabIndex = 19;
- this.MakeCode_lable.Text = "工单号";
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(665, 316);
- this.Controls.Add(this.ma_code);
- this.Controls.Add(this.MakeCode_lable);
- this.Controls.Add(this.AutoStart);
- this.Controls.Add(this.Master);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.ChooseBackUpFolder);
- this.Controls.Add(this.BackUpFolderPath);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.Clean);
- this.Controls.Add(this.OperateResult);
- this.Controls.Add(this.ChooseFolder);
- this.Controls.Add(this.FolderPath);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.StopWatch);
- this.Controls.Add(this.StartWatch);
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.MaximizeBox = false;
- this.Name = "Form1";
- this.Text = "UAS_XML解析器";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
- this.Load += new System.EventHandler(this.Form1_Load);
- ((System.ComponentModel.ISupportInitialize)(this.XmlWatcher)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.IO.FileSystemWatcher XmlWatcher;
- private System.Windows.Forms.FolderBrowserDialog XmlFolder;
- private System.Windows.Forms.Button StopWatch;
- private System.Windows.Forms.Button StartWatch;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox FolderPath;
- private System.Windows.Forms.Button ChooseFolder;
- private System.Windows.Forms.RichTextBox OperateResult;
- private System.Windows.Forms.Button Clean;
- private System.Windows.Forms.Button ChooseBackUpFolder;
- private System.Windows.Forms.TextBox BackUpFolderPath;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.ComboBox Master;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.CheckBox AutoStart;
- private System.Windows.Forms.TextBox ma_code;
- private System.Windows.Forms.Label MakeCode_lable;
- }
- }
|