private void listMyMeals(object sender, RoutedEventArgs e)
        {
            myMealsEater mymeals = new myMealsEater(system, this);

            mymeals.Show();
            this.Hide();
        }
 public ReviewWindow(Meal m, MealSharers system, myMealsEater lastWindow)
 {
     this.m          = m;
     this.system     = system;
     this.lastWindow = lastWindow;
     InitializeComponent();
     LoadImages();
     lblRating.Text = intRate.ToString();
 }