public TestGoogleURL(string gURL)
 {
     InitializeComponent();
     txtUrl.Text = gURL;
     SurpressJavascriptErrors();
     TripBrowser.Navigate(gURL);
 }
Esempio n. 2
0
 public MainWindow()
 {
     InitializeComponent();
     //Get List of Chapters from Db
     chList = Helper.GoogleHelper.GetChapters();
     dgChapters.ItemsSource = chList;
     TripBrowser.Navigate(uriGoogle);
     txtUrl.Text = uriGoogle;
 }
Esempio n. 3
0
        private void dgChapters_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            DataGrid dg = sender as DataGrid;

            Model.ChapterMiles mile = (Model.ChapterMiles)dg.SelectedItem;
            //MessageBox.Show(ch.ChapterName.ToString());

            SurpressJavascriptErrors();
            TripBrowser.Navigate(mile.GoogleUri.ToString());
            txtUrl.Text = mile.GoogleUri.ToString();
        }
Esempio n. 4
0
        private void dgChapters_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            DataGrid dg = sender as DataGrid;

            DAL.Chapter ch = (DAL.Chapter)dg.SelectedItem;
            //MessageBox.Show(ch.ChapterName.ToString());

            SurpressJavascriptErrors();
            string googleLink = null;

            googleLink = ch.GoogleLink;
            if (!string.IsNullOrEmpty(googleLink))
            {
                TripBrowser.Navigate(googleLink);
            }
            txtUrl.Text = googleLink;
        }
Esempio n. 5
0
        private void txtUrl_KeyUp(object sender, KeyEventArgs e)
        {
            string uriCheck = txtUrl.Text;

            if (e.Key == Key.Enter)
            {
                if (uriCheck.Contains("http://") == false)
                {
                    uriCheck = string.Concat("http://", uriCheck);
                }
            }
            if (uriCheck.Contains(".com") == false)
            {
                uriCheck = string.Concat(uriCheck, ".com");
            }
            if (Uri.IsWellFormedUriString(uriCheck, UriKind.Absolute))
            {
                SurpressJavascriptErrors();
                TripBrowser.Navigate(uriCheck);
            }
        }
Esempio n. 6
0
 private void GoToPage_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     TripBrowser.Navigate("https://www.google.com/");
 }
Esempio n. 7
0
 private void BrowseForward_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     TripBrowser.GoForward();
 }
Esempio n. 8
0
 private void BrowseBack_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     TripBrowser.GoBack();
 }