private void btnAddnewItemCategory_Click(object sender, EventArgs e)
        {
            AddItemCategory addIC = AddItemCategory.getInstance();

            this.Hide();
            addIC.Show();
        }
Beispiel #2
0
 public static AddItemCategory getInstance()
 {
     if (uniqueInstance == null)
     {
         uniqueInstance = new AddItemCategory();
     }
     return(uniqueInstance);
 }