private void buttonSelectShow_Click(object sender, EventArgs e)
 {
     if (isCategorySelected)
     {
         CategoryPage categoryPage = new CategoryPage();
         categoryPage.Show();
     }
     else
     {
         ProductPage productPage = new ProductPage();
         productPage.Show();
     }
 }
Exemplo n.º 2
0
        private void buttonCategory_Click(object sender, EventArgs e)
        {
            CategoryPage categoryPage = new CategoryPage();

            categoryPage.Show();
        }