private void btnAddnewItemCategory_Click(object sender, EventArgs e) { AddItemCategory addIC = AddItemCategory.getInstance(); this.Hide(); addIC.Show(); }
public static AddItemCategory getInstance() { if (uniqueInstance == null) { uniqueInstance = new AddItemCategory(); } return(uniqueInstance); }