EonaCatDeDupText/EonaCatDeDupText/Form1.Designer.cs

167 lines
7.5 KiB
C#

namespace EonaCatDeDupText
{
partial class Form1
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.InputBrowse = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.InputRTB = new System.Windows.Forms.RichTextBox();
this.OutputRTB = new System.Windows.Forms.RichTextBox();
this.OutputBrowse = new System.Windows.Forms.Button();
this.ProceedBtn = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// InputBrowse
//
this.InputBrowse.Location = new System.Drawing.Point(461, 20);
this.InputBrowse.Name = "InputBrowse";
this.InputBrowse.Size = new System.Drawing.Size(66, 23);
this.InputBrowse.TabIndex = 0;
this.InputBrowse.Text = "Browse";
this.InputBrowse.UseVisualStyleBackColor = true;
this.InputBrowse.Click += new System.EventHandler(this.InputBrowse_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(8, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(39, 16);
this.label1.TabIndex = 1;
this.label1.Text = "Input:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(8, 58);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(49, 16);
this.label2.TabIndex = 2;
this.label2.Text = "Output:";
//
// InputRTB
//
this.InputRTB.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.InputRTB.Location = new System.Drawing.Point(58, 23);
this.InputRTB.Multiline = false;
this.InputRTB.Name = "InputRTB";
this.InputRTB.Size = new System.Drawing.Size(397, 21);
this.InputRTB.TabIndex = 3;
this.InputRTB.Text = "";
//
// OutputRTB
//
this.OutputRTB.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.OutputRTB.Location = new System.Drawing.Point(58, 54);
this.OutputRTB.Multiline = false;
this.OutputRTB.Name = "OutputRTB";
this.OutputRTB.Size = new System.Drawing.Size(397, 21);
this.OutputRTB.TabIndex = 4;
this.OutputRTB.Text = "";
//
// OutputBrowse
//
this.OutputBrowse.Location = new System.Drawing.Point(461, 51);
this.OutputBrowse.Name = "OutputBrowse";
this.OutputBrowse.Size = new System.Drawing.Size(66, 23);
this.OutputBrowse.TabIndex = 5;
this.OutputBrowse.Text = "Browse";
this.OutputBrowse.UseVisualStyleBackColor = true;
this.OutputBrowse.Click += new System.EventHandler(this.OutputBrowse_Click);
//
// ProceedBtn
//
this.ProceedBtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ProceedBtn.Location = new System.Drawing.Point(448, 126);
this.ProceedBtn.Name = "ProceedBtn";
this.ProceedBtn.Size = new System.Drawing.Size(90, 29);
this.ProceedBtn.TabIndex = 6;
this.ProceedBtn.Text = "Proceed";
this.ProceedBtn.UseVisualStyleBackColor = true;
this.ProceedBtn.Click += new System.EventHandler(this.ProceedBtn_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.OutputBrowse);
this.groupBox1.Controls.Add(this.OutputRTB);
this.groupBox1.Controls.Add(this.InputRTB);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.InputBrowse);
this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox1.Location = new System.Drawing.Point(5, 28);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(533, 93);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "File locations";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(550, 161);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.ProceedBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "EonaCat Duplicate Line Remover";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button InputBrowse;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.RichTextBox InputRTB;
private System.Windows.Forms.RichTextBox OutputRTB;
private System.Windows.Forms.Button OutputBrowse;
private System.Windows.Forms.Button ProceedBtn;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
}
}