WebBrowser.StatusTextChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il valore della proprietà StatusText cambia.
public:
event EventHandler ^ StatusTextChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler StatusTextChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler? StatusTextChanged;
[<System.ComponentModel.Browsable(false)>]
member this.StatusTextChanged : EventHandler
Public Custom Event StatusTextChanged As EventHandler
Public Event StatusTextChanged As EventHandler
Tipo evento
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato come usare un gestore per l'evento StatusTextChanged per implementare una barra di stato per il WebBrowser controllo simile a quello in Internet Explorer. In questo esempio è necessario che il modulo contenga un WebBrowser controllo denominato webBrowser1
e un StatusBar controllo denominato StatusBar1
.
Per l'esempio di codice completo, vedere Procedura: Aggiungere funzionalità del Web browser a un'applicazione Windows Forms.
// Updates StatusBar1 with the current browser status text.
void WebBrowser1_StatusTextChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
this->StatusBar1->Text = WebBrowser1->StatusText;
}
// Updates the status bar with the current browser status text.
private void webBrowser1_StatusTextChanged(object sender, EventArgs e)
{
toolStripStatusLabel1.Text = webBrowser1.StatusText;
}
' Updates the status bar with the current browser status text.
Private Sub webBrowser1_StatusTextChanged( _
ByVal sender As Object, ByVal e As EventArgs) _
Handles webBrowser1.StatusTextChanged
toolStripStatusLabel1.Text = webBrowser1.StatusText
End Sub
Commenti
Gestire questo evento per aggiornare una barra di stato quando il valore della StatusText proprietà cambia.
Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.