private void UpdateWindow()
 {
     WpfApplication1.FoodProjectDataSet foodProjectDataSet = ((WpfApplication1.FoodProjectDataSet)(this.FindResource("foodProjectDataSet")));
     // Load data into the table Cuisine. You can modify this code as needed.
     WpfApplication1.FoodProjectDataSetTableAdapters.CuisineTableAdapter foodProjectDataSetCuisineTableAdapter = new WpfApplication1.FoodProjectDataSetTableAdapters.CuisineTableAdapter();
     foodProjectDataSetCuisineTableAdapter.FillByAZ(foodProjectDataSet.Cuisine);
     System.Windows.Data.CollectionViewSource cuisineViewSource = ((System.Windows.Data.CollectionViewSource)(this.FindResource("cuisineViewSource")));
     cuisineViewSource.View.MoveCurrentToFirst();
 }