Exemplo n.º 1
0
        private void EditFoodMenuItem_Click(object sender, RoutedEventArgs e)
        {
            FoodWindow window = new FoodWindow(DataContext, (Food)FoodListView.SelectedItems[0]);

            window.ShowDialog();
            UpdateFoodListView();
        }
Exemplo n.º 2
0
        private void AddFoodButton_Click(object sender, RoutedEventArgs e)
        {
            FoodWindow window = new FoodWindow(this.DataContext);

            window.ShowDialog();
        }