LearnLanguages.Study.ViewModels.StudyPhraseTimedQuestionAnswerViewModel.ResearchQuestion C# (CSharp) 메소드

ResearchQuestion() 공개 메소드

public ResearchQuestion ( ) : void
리턴 void
    public void ResearchQuestion()
    {
      var googleLink = string.Format(StudyResources.ResearchFormatStringGoogle, Question.Text);
      var bingLink = string.Format(StudyResources.ResearchFormatStringBing, Question.Text);
      //HtmlPage.Window.Navigate(new Uri(googleLink), "_blank");
      HtmlPage.Window.Navigate(new Uri(bingLink), "_blank"); 
    }