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

Progress Bar using C#.net

56 second read
0
0
511

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

Creating a Calculator in WPF with C# – Step-by-Step Tutorial

In this tutorials will teach how to make a calculator using wpf C# application step by ste…