private void SearchBox_QuerySubmitted(SearchBox sender, SearchBoxQuerySubmittedEventArgs args) { var text = args.QueryText; if (text.Length > 2) { this.Frame.Navigate(typeof(RecipesPage), new RecipesPageViewModel() { Title = "Találatok erre: \"" + text + "\"", Recipes = AppCache.Search(text) }); } else { new Windows.UI.Popups.MessageDialog("Kérjük legalább 3 karaktert adj meg!").ShowAsync(); } }