WebBrowser.StatusTextChanged Event

Definition

Occurs when the StatusText property value changes.

C#
[System.ComponentModel.Browsable(false)]
public event EventHandler StatusTextChanged;
C#
[System.ComponentModel.Browsable(false)]
public event EventHandler? StatusTextChanged;

Event Type

Attributes

Examples

The following code example demonstrates how to use a handler for the StatusTextChanged event to implement a status bar for the WebBrowser control similar to the one in Internet Explorer. This example requires that your form contains a WebBrowser control called webBrowser1 and a StatusBar control called StatusBar1.

For the complete code example, see How to: Add Web Browser Capabilities to a Windows Forms Application.

C#
// Updates the status bar with the current browser status text.
private void webBrowser1_StatusTextChanged(object sender, EventArgs e)
{
    toolStripStatusLabel1.Text = webBrowser1.StatusText;
}

Remarks

Handle this event to update a status bar when the value of the StatusText property changes.

For more information about handling events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also