namespace WinFormsApp2 { partial class Form1 { /// /// 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.InfoListBox = new System.Windows.Forms.ListBox(); this.ParseFileBtn = new System.Windows.Forms.Button(); this.SuspendLayout(); // // InfoListBox // this.InfoListBox.FormattingEnabled = true; this.InfoListBox.ItemHeight = 25; this.InfoListBox.Location = new System.Drawing.Point(12, 84); this.InfoListBox.Name = "InfoListBox"; this.InfoListBox.Size = new System.Drawing.Size(776, 354); this.InfoListBox.TabIndex = 0; // // ParseFileBtn // this.ParseFileBtn.Location = new System.Drawing.Point(226, 28); this.ParseFileBtn.Name = "ParseFileBtn"; this.ParseFileBtn.Size = new System.Drawing.Size(372, 34); this.ParseFileBtn.TabIndex = 1; this.ParseFileBtn.Text = "Parse file"; this.ParseFileBtn.UseVisualStyleBackColor = true; this.ParseFileBtn.Click += new System.EventHandler(this.ParseFileBtn_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.ParseFileBtn); this.Controls.Add(this.InfoListBox); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion private ListBox InfoListBox; private Button ParseFileBtn; } }