228 lines
10 KiB
C#
228 lines
10 KiB
C#
namespace YLPublishTool.Forms
|
|
{
|
|
partial class ParseForm
|
|
{
|
|
/// <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.panel1 = new System.Windows.Forms.Panel();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.tbFilePath = new System.Windows.Forms.TextBox();
|
|
this.treeView1 = new System.Windows.Forms.TreeView();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.rtbSource = new System.Windows.Forms.RichTextBox();
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
|
|
this.rtbResult = new System.Windows.Forms.RichTextBox();
|
|
this.panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabPage1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
|
|
this.splitContainer2.Panel1.SuspendLayout();
|
|
this.splitContainer2.Panel2.SuspendLayout();
|
|
this.splitContainer2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.button1);
|
|
this.panel1.Controls.Add(this.tbFilePath);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Margin = new System.Windows.Forms.Padding(4);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(1351, 65);
|
|
this.panel1.TabIndex = 0;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(629, 20);
|
|
this.button1.Margin = new System.Windows.Forms.Padding(4);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(136, 31);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.Text = "选择配置文件";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// tbFilePath
|
|
//
|
|
this.tbFilePath.Location = new System.Drawing.Point(17, 23);
|
|
this.tbFilePath.Margin = new System.Windows.Forms.Padding(4);
|
|
this.tbFilePath.Name = "tbFilePath";
|
|
this.tbFilePath.Size = new System.Drawing.Size(603, 26);
|
|
this.tbFilePath.TabIndex = 0;
|
|
//
|
|
// treeView1
|
|
//
|
|
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.treeView1.Location = new System.Drawing.Point(0, 0);
|
|
this.treeView1.Margin = new System.Windows.Forms.Padding(4);
|
|
this.treeView1.Name = "treeView1";
|
|
this.treeView1.Size = new System.Drawing.Size(505, 568);
|
|
this.treeView1.TabIndex = 0;
|
|
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.Location = new System.Drawing.Point(3, 3);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
|
|
this.splitContainer1.Size = new System.Drawing.Size(1337, 568);
|
|
this.splitContainer1.SplitterDistance = 505;
|
|
this.splitContainer1.TabIndex = 1;
|
|
//
|
|
// rtbSource
|
|
//
|
|
this.rtbSource.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.rtbSource.Location = new System.Drawing.Point(0, 0);
|
|
this.rtbSource.Name = "rtbSource";
|
|
this.rtbSource.Size = new System.Drawing.Size(828, 354);
|
|
this.rtbSource.TabIndex = 1;
|
|
this.rtbSource.Text = "";
|
|
//
|
|
// tabControl1
|
|
//
|
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|
this.tabControl1.Controls.Add(this.tabPage2);
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabControl1.Location = new System.Drawing.Point(0, 65);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.Size = new System.Drawing.Size(1351, 604);
|
|
this.tabControl1.TabIndex = 2;
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.tabPage1.Controls.Add(this.splitContainer1);
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 26);
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage1.Size = new System.Drawing.Size(1343, 574);
|
|
this.tabPage1.TabIndex = 0;
|
|
this.tabPage1.Text = "tabPage1";
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.Location = new System.Drawing.Point(4, 26);
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage2.Size = new System.Drawing.Size(1343, 574);
|
|
this.tabPage2.TabIndex = 1;
|
|
this.tabPage2.Text = "tabPage2";
|
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// splitContainer2
|
|
//
|
|
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer2.Name = "splitContainer2";
|
|
this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer2.Panel1
|
|
//
|
|
this.splitContainer2.Panel1.Controls.Add(this.rtbResult);
|
|
//
|
|
// splitContainer2.Panel2
|
|
//
|
|
this.splitContainer2.Panel2.Controls.Add(this.rtbSource);
|
|
this.splitContainer2.Size = new System.Drawing.Size(828, 568);
|
|
this.splitContainer2.SplitterDistance = 210;
|
|
this.splitContainer2.TabIndex = 2;
|
|
//
|
|
// rtbResult
|
|
//
|
|
this.rtbResult.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.rtbResult.Location = new System.Drawing.Point(0, 0);
|
|
this.rtbResult.Name = "rtbResult";
|
|
this.rtbResult.Size = new System.Drawing.Size(828, 210);
|
|
this.rtbResult.TabIndex = 2;
|
|
this.rtbResult.Text = "";
|
|
//
|
|
// ParseForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1351, 669);
|
|
this.Controls.Add(this.tabControl1);
|
|
this.Controls.Add(this.panel1);
|
|
this.Margin = new System.Windows.Forms.Padding(4);
|
|
this.Name = "ParseForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "ParseForm";
|
|
this.Load += new System.EventHandler(this.ParseForm_Load);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.tabPage1.ResumeLayout(false);
|
|
this.splitContainer2.Panel1.ResumeLayout(false);
|
|
this.splitContainer2.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
|
|
this.splitContainer2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.TreeView treeView1;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox tbFilePath;
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.RichTextBox rtbSource;
|
|
private System.Windows.Forms.SplitContainer splitContainer2;
|
|
private System.Windows.Forms.RichTextBox rtbResult;
|
|
}
|
|
} |