Пример #1
0
 public AddIngredient(PantryManager pm)
 {
     InitializeComponent();
     categoryBox.ItemsSource = Ingredient.IngredientCatagories;
     local_pm = pm;
     pm.IngredientList.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged);
 }
Пример #2
0
 public AddRecipesWindow(PantryManager PantryM, ListBox MyRecipe)
 {
     InitializeComponent();
     PM = PantryM;
     MR = MyRecipe;
 }