namespace InventoryTest { 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.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ManageCategoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.CategorySelectionComboBox = new System.Windows.Forms.ComboBox(); this.SubCategorySelectionComboBox = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.ItemListView = new System.Windows.Forms.ListView(); this.MainLayoutPanel.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // MainLayoutPanel // this.MainLayoutPanel.ColumnCount = 4; this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.Controls.Add(this.menuStrip1, 0, 0); this.MainLayoutPanel.Controls.Add(this.groupBox1, 0, 1); this.MainLayoutPanel.Controls.Add(this.groupBox2, 0, 2); this.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.MainLayoutPanel.Location = new System.Drawing.Point(0, 0); this.MainLayoutPanel.Name = "MainLayoutPanel"; this.MainLayoutPanel.RowCount = 5; this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F)); this.MainLayoutPanel.Size = new System.Drawing.Size(1289, 618); this.MainLayoutPanel.TabIndex = 0; // // menuStrip1 // this.MainLayoutPanel.SetColumnSpan(this.menuStrip1, 4); this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.toolsToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(1289, 24); this.menuStrip1.TabIndex = 0; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(93, 22); this.exitToolStripMenuItem.Text = "E&xit"; // // toolsToolStripMenuItem // this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ManageCategoriesToolStripMenuItem}); this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; this.toolsToolStripMenuItem.Size = new System.Drawing.Size(62, 20); this.toolsToolStripMenuItem.Text = "&Manage"; // // ManageCategoriesToolStripMenuItem // this.ManageCategoriesToolStripMenuItem.Name = "ManageCategoriesToolStripMenuItem"; this.ManageCategoriesToolStripMenuItem.Size = new System.Drawing.Size(176, 22); this.ManageCategoriesToolStripMenuItem.Text = "Manage &Categories"; // // groupBox1 // this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.SubCategorySelectionComboBox); this.groupBox1.Controls.Add(this.CategorySelectionComboBox); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(3, 28); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(316, 142); this.groupBox1.TabIndex = 1; this.groupBox1.TabStop = false; this.groupBox1.Text = "Category Selection"; // // CategorySelectionComboBox // this.CategorySelectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CategorySelectionComboBox.FormattingEnabled = true; this.CategorySelectionComboBox.Location = new System.Drawing.Point(94, 22); this.CategorySelectionComboBox.Name = "CategorySelectionComboBox"; this.CategorySelectionComboBox.Size = new System.Drawing.Size(216, 23); this.CategorySelectionComboBox.TabIndex = 0; // // SubCategorySelectionComboBox // this.SubCategorySelectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.SubCategorySelectionComboBox.FormattingEnabled = true; this.SubCategorySelectionComboBox.Location = new System.Drawing.Point(94, 62); this.SubCategorySelectionComboBox.Name = "SubCategorySelectionComboBox"; this.SubCategorySelectionComboBox.Size = new System.Drawing.Size(216, 23); this.SubCategorySelectionComboBox.TabIndex = 1; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(6, 25); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(58, 15); this.label1.TabIndex = 2; this.label1.Text = "Category:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(6, 65); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(83, 15); this.label2.TabIndex = 3; this.label2.Text = "Sub-Category:"; // // groupBox2 // this.groupBox2.Controls.Add(this.ItemListView); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox2.Location = new System.Drawing.Point(3, 176); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(316, 142); this.groupBox2.TabIndex = 2; this.groupBox2.TabStop = false; this.groupBox2.Text = "Items:"; // // ItemListView // this.ItemListView.Dock = System.Windows.Forms.DockStyle.Fill; this.ItemListView.HideSelection = false; this.ItemListView.Location = new System.Drawing.Point(3, 19); this.ItemListView.Name = "ItemListView"; this.ItemListView.Size = new System.Drawing.Size(310, 120); this.ItemListView.TabIndex = 0; this.ItemListView.UseCompatibleStateImageBehavior = false; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1289, 618); this.Controls.Add(this.MainLayoutPanel); this.MainMenuStrip = this.menuStrip1; this.Name = "Form1"; this.Text = "Form1"; this.MainLayoutPanel.ResumeLayout(false); this.MainLayoutPanel.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TableLayoutPanel MainLayoutPanel; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem ManageCategoriesToolStripMenuItem; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox SubCategorySelectionComboBox; private System.Windows.Forms.ComboBox CategorySelectionComboBox; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.ListView ItemListView; } }