namespace CarManagerV2 { partial class MainForm { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.flpCars = new System.Windows.Forms.FlowLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.tbxSearch = new System.Windows.Forms.TextBox(); this.btnNewCar = new System.Windows.Forms.Button(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); this.SuspendLayout(); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.flpCars, 0, 1); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 2; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanel1.Size = new System.Drawing.Size(800, 450); this.tableLayoutPanel1.TabIndex = 0; // // flpCars // this.flpCars.AutoScroll = true; this.flpCars.AutoScrollMargin = new System.Drawing.Size(0, 200); this.flpCars.Dock = System.Windows.Forms.DockStyle.Fill; this.flpCars.Location = new System.Drawing.Point(3, 43); this.flpCars.Name = "flpCars"; this.flpCars.Size = new System.Drawing.Size(794, 404); this.flpCars.TabIndex = 1; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 2; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel2.Controls.Add(this.tbxSearch, 0, 0); this.tableLayoutPanel2.Controls.Add(this.btnNewCar, 1, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; this.tableLayoutPanel2.RowCount = 1; this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F)); this.tableLayoutPanel2.Size = new System.Drawing.Size(794, 34); this.tableLayoutPanel2.TabIndex = 2; // // tbxSearch // this.tbxSearch.Dock = System.Windows.Forms.DockStyle.Fill; this.tbxSearch.Location = new System.Drawing.Point(3, 3); this.tbxSearch.Name = "tbxSearch"; this.tbxSearch.Size = new System.Drawing.Size(391, 22); this.tbxSearch.TabIndex = 3; this.tbxSearch.TextChanged += new System.EventHandler(this.tbxSearch_TextChanged); // // btnNewCar // this.btnNewCar.Location = new System.Drawing.Point(400, 3); this.btnNewCar.Name = "btnNewCar"; this.btnNewCar.Size = new System.Drawing.Size(75, 23); this.btnNewCar.TabIndex = 4; this.btnNewCar.Text = "Add Car"; this.btnNewCar.UseVisualStyleBackColor = true; this.btnNewCar.Click += new System.EventHandler(this.btnNewCar_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.tableLayoutPanel1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(818, 497); this.Name = "MainForm"; this.Text = "Carmanager 2"; this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel2.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private System.Windows.Forms.FlowLayoutPanel flpCars; private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2; private System.Windows.Forms.TextBox tbxSearch; private System.Windows.Forms.Button btnNewCar; } }