public static GamePokemonSearchResultsWindow Show(Window window, List <GamePokemonSearchResults> mirageIslandResults, string title = null)
        {
            GamePokemonSearchResultsWindow form = new GamePokemonSearchResultsWindow(mirageIslandResults);

            if (title != null)
            {
                form.Title = title;
            }
            form.Owner = window;
            form.Show();
            return(form);
        }
 public static GamePokemonSearchResultsWindow Show(Window window, List<GamePokemonSearchResults> mirageIslandResults, string title = null)
 {
     GamePokemonSearchResultsWindow form = new GamePokemonSearchResultsWindow(mirageIslandResults);
     if (title != null)
         form.Title = title;
     form.Owner = window;
     form.Show();
     return form;
 }