예제 #1
0
        private void listOfCategories_Click(object sender, EventArgs e)
        {
            CategoryDishForm categoryDishForm = new CategoryDishForm();

            if (categoryDishForm.ShowDialog() == DialogResult.OK)
            {
                this.categoryDishesTableAdapter.Fill(this.restaurantAppDataSet.CategoryDishes);
            }
        }
예제 #2
0
파일: Form1.cs 프로젝트: olyacherrry/DBlabs
        private void dishcategorybutton_Click(object sender, EventArgs e)
        {
            CategoryDishForm categoryDishForm = new CategoryDishForm();

            categoryDishForm.Show();
        }