177 lines
7.4 KiB
C#
177 lines
7.4 KiB
C#
namespace WindowsFormsApp1
|
|
{
|
|
partial class StartShell
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.btnFromXml = new System.Windows.Forms.Button();
|
|
this.btnToXml = new System.Windows.Forms.Button();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.lblFromXml = new System.Windows.Forms.Label();
|
|
this.lblToXml = new System.Windows.Forms.Label();
|
|
this.btnStart = new System.Windows.Forms.Button();
|
|
this.lvwResult = new System.Windows.Forms.ListView();
|
|
this.ColumnTagName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.ColumnDataValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.ColumnTagXPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.txtXPathAnalyse = new System.Windows.Forms.TextBox();
|
|
this.columnTagFound = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.SuspendLayout();
|
|
//
|
|
// btnFromXml
|
|
//
|
|
this.btnFromXml.Location = new System.Drawing.Point(13, 13);
|
|
this.btnFromXml.Name = "btnFromXml";
|
|
this.btnFromXml.Size = new System.Drawing.Size(75, 23);
|
|
this.btnFromXml.TabIndex = 0;
|
|
this.btnFromXml.Text = "FromXml";
|
|
this.btnFromXml.UseVisualStyleBackColor = true;
|
|
this.btnFromXml.Click += new System.EventHandler(this.BtnFromXml_Click);
|
|
//
|
|
// btnToXml
|
|
//
|
|
this.btnToXml.Location = new System.Drawing.Point(13, 43);
|
|
this.btnToXml.Name = "btnToXml";
|
|
this.btnToXml.Size = new System.Drawing.Size(75, 23);
|
|
this.btnToXml.TabIndex = 1;
|
|
this.btnToXml.Text = "ToXml";
|
|
this.btnToXml.UseVisualStyleBackColor = true;
|
|
this.btnToXml.Click += new System.EventHandler(this.BtnToXml_Click);
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|
//
|
|
// lblFromXml
|
|
//
|
|
this.lblFromXml.AutoSize = true;
|
|
this.lblFromXml.Location = new System.Drawing.Point(95, 22);
|
|
this.lblFromXml.Name = "lblFromXml";
|
|
this.lblFromXml.Size = new System.Drawing.Size(63, 13);
|
|
this.lblFromXml.TabIndex = 2;
|
|
this.lblFromXml.Text = "fromxmlpath";
|
|
//
|
|
// lblToXml
|
|
//
|
|
this.lblToXml.AutoSize = true;
|
|
this.lblToXml.Location = new System.Drawing.Point(95, 52);
|
|
this.lblToXml.Name = "lblToXml";
|
|
this.lblToXml.Size = new System.Drawing.Size(52, 13);
|
|
this.lblToXml.TabIndex = 3;
|
|
this.lblToXml.Text = "toxmlpath";
|
|
//
|
|
// btnStart
|
|
//
|
|
this.btnStart.Location = new System.Drawing.Point(13, 73);
|
|
this.btnStart.Name = "btnStart";
|
|
this.btnStart.Size = new System.Drawing.Size(75, 23);
|
|
this.btnStart.TabIndex = 4;
|
|
this.btnStart.Text = "Start Analyse";
|
|
this.btnStart.UseVisualStyleBackColor = true;
|
|
this.btnStart.Click += new System.EventHandler(this.BtnStart_Click);
|
|
//
|
|
// lvwResult
|
|
//
|
|
this.lvwResult.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.ColumnTagName,
|
|
this.ColumnDataValue,
|
|
this.ColumnTagXPath,
|
|
this.columnTagFound});
|
|
this.lvwResult.FullRowSelect = true;
|
|
this.lvwResult.Location = new System.Drawing.Point(98, 73);
|
|
this.lvwResult.MultiSelect = false;
|
|
this.lvwResult.Name = "lvwResult";
|
|
this.lvwResult.Size = new System.Drawing.Size(1015, 303);
|
|
this.lvwResult.TabIndex = 5;
|
|
this.lvwResult.UseCompatibleStateImageBehavior = false;
|
|
this.lvwResult.View = System.Windows.Forms.View.Details;
|
|
this.lvwResult.Click += new System.EventHandler(this.LvwResult_Click);
|
|
//
|
|
// ColumnTagName
|
|
//
|
|
this.ColumnTagName.Text = "Tagname";
|
|
this.ColumnTagName.Width = 200;
|
|
//
|
|
// ColumnDataValue
|
|
//
|
|
this.ColumnDataValue.Text = "DataValue";
|
|
this.ColumnDataValue.Width = 200;
|
|
//
|
|
// ColumnTagXPath
|
|
//
|
|
this.ColumnTagXPath.Text = "TagXPath";
|
|
this.ColumnTagXPath.Width = 400;
|
|
//
|
|
// txtXPathAnalyse
|
|
//
|
|
this.txtXPathAnalyse.Location = new System.Drawing.Point(98, 392);
|
|
this.txtXPathAnalyse.Name = "txtXPathAnalyse";
|
|
this.txtXPathAnalyse.Size = new System.Drawing.Size(592, 20);
|
|
this.txtXPathAnalyse.TabIndex = 6;
|
|
//
|
|
// columnTagFound
|
|
//
|
|
this.columnTagFound.Text = "FoundInSecFile";
|
|
this.columnTagFound.Width = 200;
|
|
//
|
|
// StartShell
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1171, 450);
|
|
this.Controls.Add(this.txtXPathAnalyse);
|
|
this.Controls.Add(this.lvwResult);
|
|
this.Controls.Add(this.btnStart);
|
|
this.Controls.Add(this.lblToXml);
|
|
this.Controls.Add(this.lblFromXml);
|
|
this.Controls.Add(this.btnToXml);
|
|
this.Controls.Add(this.btnFromXml);
|
|
this.Name = "StartShell";
|
|
this.Text = "StartShell";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnFromXml;
|
|
private System.Windows.Forms.Button btnToXml;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.Label lblFromXml;
|
|
private System.Windows.Forms.Label lblToXml;
|
|
private System.Windows.Forms.Button btnStart;
|
|
private System.Windows.Forms.ListView lvwResult;
|
|
private System.Windows.Forms.ColumnHeader ColumnTagName;
|
|
private System.Windows.Forms.ColumnHeader ColumnDataValue;
|
|
private System.Windows.Forms.ColumnHeader ColumnTagXPath;
|
|
private System.Windows.Forms.TextBox txtXPathAnalyse;
|
|
private System.Windows.Forms.ColumnHeader columnTagFound;
|
|
}
|
|
}
|
|
|