New to Telerik UI for WinFormsStart a free 30-day trial

Getting Started with WinForms ProgressBar

Updated over 6 months ago

This tutorial will help you to quickly get started using the control.

Adding Telerik Assemblies Using NuGet

To use RadProgressBar when working with NuGet packages, install the Telerik.UI.for.WinForms.AllControls package. The package target framework version may vary.

Read more about NuGet installation in the Install using NuGet Packages article.

With the 2025 Q1 release, the Telerik UI for WinForms has a new licensing mechanism. You can learn more about it here.

Adding Assembly References Manually

When dragging and dropping a control from the Visual Studio (VS) Toolbox onto the Form Designer, VS automatically adds the necessary assemblies. However, if you're adding the control programmatically, you'll need to manually reference the following assemblies:

  • Telerik.Licensing.Runtime
  • Telerik.WinControls
  • Telerik.WinControls.UI
  • TelerikCommon

The Telerik UI for WinForms assemblies can be install by using one of the available installation approaches.

Defining the RadProgressBar

In this tutorial, you will use a RadProgressBar to show the progress of a long-running operation. The long-running operation is simulated with a Timer control.

1. Place a RadProgressBar control, a RadButton control, and a standard Timer control on a form.

2. Set the Timer control Interval property to 50.

3. In the Properties window, click the events button.

4. Double-click the Tick event.

5. Replace the automatically-generated event handler with this code:

Handling the Timer Tick event

C#
int ticks = 0;
private void timer1_Tick(object sender, EventArgs e)
{
    ticks++;
    radProgressBar1.Value1 = ticks;
    if (ticks == 100)
    {
        timer1.Enabled = false;
        ticks = 0;
    }
}

6. In the design view of the form, select the RadButton control.

7. In the Properties window set the Text property to "Go!".

8. In the Properties window, click the events button.

9. Double-click the Click event.

10. Replace the automatically-generated event handler with this code:

C#
void radButton1_Click(object sender, EventArgs e)
{
    timer1.Enabled = true;
}

11. In the design view of the form select the RadProgressBar control.

12. Set Dash to true.

13. Set Text to an empty string.

14. Set SeparatorColor1 to Yellow.

15. Set SeparatorColor2 to Gold.

16. Set SeparatorWidth to 6.

17. Set StepWidth to 12.

18. Set SweepAngle to 210.

19. Press F5 to run the project.

20. Click the Go Button to see the Telerik RadProgressBar animation.

WinForms RadProgressBar Getting Started

Telerik UI for WinForms Learning Resources