The main form now pulls in category and sub category options for the user to select from. Removed some controls from the CategoryManager form that VS 2019 seems to have failed to clear from the designer's code.

This commit is contained in:
2021-04-15 18:31:11 -05:00
parent 98db853414
commit dd0594211f
5 changed files with 259 additions and 155 deletions
-20
View File
@@ -32,8 +32,6 @@ namespace InventoryTest
this.MainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.SubCategoryComboBox = new System.Windows.Forms.ComboBox();
this.CategoryComboBox = new System.Windows.Forms.ComboBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.CreateNewSubCategoryButton = new System.Windows.Forms.Button();
@@ -114,8 +112,6 @@ namespace InventoryTest
//
// groupBox1
//
this.groupBox1.Controls.Add(this.SubCategoryComboBox);
this.groupBox1.Controls.Add(this.CategoryComboBox);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox1.Location = new System.Drawing.Point(267, 28);
this.groupBox1.Name = "groupBox1";
@@ -124,20 +120,6 @@ namespace InventoryTest
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Category Selection";
//
// SubCategoryComboBox
//
this.SubCategoryComboBox.Location = new System.Drawing.Point(0, 0);
this.SubCategoryComboBox.Name = "SubCategoryComboBox";
this.SubCategoryComboBox.Size = new System.Drawing.Size(121, 23);
this.SubCategoryComboBox.TabIndex = 0;
//
// CategoryComboBox
//
this.CategoryComboBox.Location = new System.Drawing.Point(0, 0);
this.CategoryComboBox.Name = "CategoryComboBox";
this.CategoryComboBox.Size = new System.Drawing.Size(121, 23);
this.CategoryComboBox.TabIndex = 1;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 3;
@@ -644,8 +626,6 @@ namespace InventoryTest
private System.Windows.Forms.TableLayoutPanel MainLayoutPanel;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox SubCategoryComboBox;
private System.Windows.Forms.ComboBox CategoryComboBox;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.ComboBox CategoryComboBoxManager;