namespace PrettyPrint { partial class frmPrettyPrint { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.tbInputFileName = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.tsslStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.tspbStatus = new System.Windows.Forms.ToolStripProgressBar(); this.btnBrowse = new System.Windows.Forms.Button(); this.ofd = new System.Windows.Forms.OpenFileDialog(); this.sfd = new System.Windows.Forms.SaveFileDialog(); this.fbd = new System.Windows.Forms.FolderBrowserDialog(); this.btnPretty = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.tbOutputFileName = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.tbFolder = new System.Windows.Forms.TextBox(); this.btnFolderBrowse = new System.Windows.Forms.Button(); this.btnFolderPretty = new System.Windows.Forms.Button(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // tbInputFileName // this.tbInputFileName.Location = new System.Drawing.Point(76, 29); this.tbInputFileName.Name = "tbInputFileName"; this.tbInputFileName.Size = new System.Drawing.Size(434, 20); this.tbInputFileName.TabIndex = 0; this.tbInputFileName.Text = "C:\\Development\\fmtall\\AEP_00all.xml"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 31); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(50, 13); this.label1.TabIndex = 1; this.label1.Text = "Input File"; // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tspbStatus, this.tsslStatus}); this.statusStrip1.Location = new System.Drawing.Point(0, 282); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(657, 22); this.statusStrip1.TabIndex = 2; this.statusStrip1.Text = "statusStrip1"; // // tsslStatus // this.tsslStatus.Name = "tsslStatus"; this.tsslStatus.Size = new System.Drawing.Size(39, 17); this.tsslStatus.Text = "Ready"; // // tspbStatus // this.tspbStatus.Name = "tspbStatus"; this.tspbStatus.Size = new System.Drawing.Size(100, 16); this.tspbStatus.Visible = false; // // btnBrowse // this.btnBrowse.Location = new System.Drawing.Point(516, 27); this.btnBrowse.Name = "btnBrowse"; this.btnBrowse.Size = new System.Drawing.Size(59, 23); this.btnBrowse.TabIndex = 3; this.btnBrowse.Text = "Browse..."; this.btnBrowse.UseVisualStyleBackColor = true; // // btnPretty // this.btnPretty.Location = new System.Drawing.Point(516, 53); this.btnPretty.Name = "btnPretty"; this.btnPretty.Size = new System.Drawing.Size(59, 23); this.btnPretty.TabIndex = 4; this.btnPretty.Text = "Pretty"; this.btnPretty.UseVisualStyleBackColor = true; this.btnPretty.Click += new System.EventHandler(this.btnPretty_Click); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 57); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(58, 13); this.label2.TabIndex = 6; this.label2.Text = "Output File"; // // tbOutputFileName // this.tbOutputFileName.Location = new System.Drawing.Point(76, 55); this.tbOutputFileName.Name = "tbOutputFileName"; this.tbOutputFileName.Size = new System.Drawing.Size(434, 20); this.tbOutputFileName.TabIndex = 5; this.tbOutputFileName.Text = "C:\\Development\\fmtall\\AEP_00all_out.xml"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 169); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(36, 13); this.label3.TabIndex = 8; this.label3.Text = "Folder"; // // tbFolder // this.tbFolder.Location = new System.Drawing.Point(76, 167); this.tbFolder.Name = "tbFolder"; this.tbFolder.Size = new System.Drawing.Size(434, 20); this.tbFolder.TabIndex = 7; this.tbFolder.Text = "C:\\Development\\fmtall"; // // btnFolderBrowse // this.btnFolderBrowse.Location = new System.Drawing.Point(516, 165); this.btnFolderBrowse.Name = "btnFolderBrowse"; this.btnFolderBrowse.Size = new System.Drawing.Size(59, 23); this.btnFolderBrowse.TabIndex = 9; this.btnFolderBrowse.Text = "Browse..."; this.btnFolderBrowse.UseVisualStyleBackColor = true; this.btnFolderBrowse.Click += new System.EventHandler(this.btnFolderBrowse_Click); // // btnFolderPretty // this.btnFolderPretty.Location = new System.Drawing.Point(581, 164); this.btnFolderPretty.Name = "btnFolderPretty"; this.btnFolderPretty.Size = new System.Drawing.Size(59, 23); this.btnFolderPretty.TabIndex = 10; this.btnFolderPretty.Text = "Pretty"; this.btnFolderPretty.UseVisualStyleBackColor = true; this.btnFolderPretty.Click += new System.EventHandler(this.btnFolderPretty_Click); // // frmPrettyPrint // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(657, 304); this.Controls.Add(this.btnFolderPretty); this.Controls.Add(this.btnFolderBrowse); this.Controls.Add(this.label3); this.Controls.Add(this.tbFolder); this.Controls.Add(this.label2); this.Controls.Add(this.tbOutputFileName); this.Controls.Add(this.btnPretty); this.Controls.Add(this.btnBrowse); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.label1); this.Controls.Add(this.tbInputFileName); this.Name = "frmPrettyPrint"; this.Text = "PrettyPrint"; this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox tbInputFileName; private System.Windows.Forms.Label label1; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripStatusLabel tsslStatus; private System.Windows.Forms.ToolStripProgressBar tspbStatus; private System.Windows.Forms.Button btnBrowse; private System.Windows.Forms.OpenFileDialog ofd; private System.Windows.Forms.SaveFileDialog sfd; private System.Windows.Forms.FolderBrowserDialog fbd; private System.Windows.Forms.Button btnPretty; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox tbOutputFileName; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox tbFolder; private System.Windows.Forms.Button btnFolderBrowse; private System.Windows.Forms.Button btnFolderPretty; } }