devxlogo

Show the Page Download Status in a WebBrowser Control

Show the Page Download Status in a WebBrowser Control

The Webbrowser control provides us with the “ProgressChanged” event. We can use the “CurrentProgress” and “MaximumProgress” Properties of the WEbBrowserProgressChangedEventArgs in this method to determine the percentage of the page that is downloaded.

Drag and drop a Progressbar. Leave the name set to its default (progressbar1). Add an event handler to the Webbrowser’s ProgressChanged event.

private void webBrowser1_ProgressChanged(object sender, WebBrowserProgressChangedEventArgs e) {    progressBar1.Maximum = Convert.ToInt32( e.MaximumProgress);    progressBar1.Value = Convert.ToInt32( e.CurrentProgress); }
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist