コード例 #1
0
 private void buttonSelectShow_Click(object sender, EventArgs e)
 {
     if (isCategorySelected)
     {
         CategoryPage categoryPage = new CategoryPage();
         categoryPage.Show();
     }
     else
     {
         ProductPage productPage = new ProductPage();
         productPage.Show();
     }
 }
コード例 #2
0
ファイル: AdminPage.cs プロジェクト: iremaras/Bakery
        private void buttonCategory_Click(object sender, EventArgs e)
        {
            CategoryPage categoryPage = new CategoryPage();

            categoryPage.Show();
        }