Provides data for the GeckoNavigatedEventHandler event.
Inheritance: System.EventArgs
コード例 #1
0
ファイル: Browser.cs プロジェクト: krikelin/Spotiapps
 void webBrowser1_Navigated(object sender, GeckoNavigatedEventArgs e)
 {
     /*      GeckoElementCollection C = webBrowser1.Document.GetElementsByTagName("a");
     foreach (GeckoElement Elm in C)
     {
         if (Elm.GetAttribute("href").StartsWith("spotify:"))
         {
             Elm.SetAttribute("href", Elm.GetAttribute("href").Replace("spotify:", "http://open.spotify.com/").re);
         }
     }*/
 }
コード例 #2
0
 /// <summary>Raises the <see cref="Navigated"/> event.</summary>
 /// <param name="e">The data for the event.</param>
 protected virtual void OnNavigated(GeckoNavigatedEventArgs e)
 {
     if (((GeckoNavigatedEventHandler)this.Events[NavigatedEvent]) != null)
         ((GeckoNavigatedEventHandler)this.Events[NavigatedEvent])(this, e);
 }
コード例 #3
0
ファイル: PublicTab.cs プロジェクト: alexcepoi/ShareTabWin
        /// <summary>
        /// If the client is broadcasting, notifies the server of the update when the
        /// renderer has navigated somewhere else (such as when clicking on a link).
        /// </summary>
        protected override void browser_Navigated(object sender, GeckoNavigatedEventArgs e)
        {
            base.browser_Navigated (sender, e);

            MainWindow main = App.Current.MainWindow as MainWindow;

            if (main != null && main.ClientStatus.IsBroadcasting)
                main.Connection.UpdateTab (TabData);
        }
コード例 #4
0
 /// <summary>
 /// Updates the address bar when the renderer has navigated somewhere.
 /// </summary>
 protected virtual void browser_Navigated(object sender, GeckoNavigatedEventArgs e)
 {
     addressBar.Text = e.Uri.AbsoluteUri;
 }
コード例 #5
0
ファイル: WordLaunch.cs プロジェクト: davidsiaw/bunnyblogger
 void geckoWebBrowser1_Navigated(object sender, GeckoNavigatedEventArgs e)
 {
     //geckoWebBrowser1.Navigate(url);
 }
コード例 #6
0
ファイル: Form1.cs プロジェクト: StrongholdIII/BF3-LauncherV2
 private void geckoWebBrowser3_Navigated(object sender, GeckoNavigatedEventArgs e)
 {
 }