Home C#.net Progress Bar using C#.net

Progress Bar using C#.net

56 second read
0
0
501

This tutorial will teach you  how to make a  progress bar using C#.net step by step.

drap the timer contral on form it will display on the component tray.double click the timer

you can use the following code snippet to load the progressbar. paste the code inside the timer1_Tick Event.

 private void timer1_Tick(object sender, EventArgs e)
        {
            progressBar1.Value = progressBar1.Value + 1;

            if (progressBar1.Value >= 99)
            {
                Main m = new Main();
                this.Hide();
                m.Show();
                timer1.Enabled = false;

            }

        }

 

 

 

Load More Related Articles
Load More By admin
Load More In C#.net

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also

Laravel 11 CRUD Mastering RESTful API MVC with Repository Pattern

In this tutorial will teach Laravel 11 Api MVC with Repository Pattern Crud Application st…