private void showMyMeals(object sender, RoutedEventArgs e)
        {
            MyMealsCookWindow win = new MyMealsCookWindow(system, this);

            win.Show();
            this.Hide();
        }
示例#2
0
 public ReviewCookWindow(Meal m, MealSharers system, MyMealsCookWindow lastWindow)
 {
     this.m          = m;
     this.system     = system;
     this.lastWindow = lastWindow;
     InitializeComponent();
     LoadImages();
     lblRating.Text = intRate.ToString();
 }