public search_top_grid()
 {
     InitializeComponent();
     this_recipe             = myServer.getRandomRecipe();
     recipe_description.Text = this_recipe.Desc;
     recipeTitle.Text        = this_recipe.Title;
 }
 public search_bottom_grid()
 {
     InitializeComponent();
     this_recipe      = myServer.getRandomRecipe();
     recipeTitle.Text = this_recipe.Title;
 }