We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

WPF StepProgressBar control is used to show the progress of a multiple-step process, such as new user registration or package status tracking. You can customize its appearance by changing the step shape, progress bar color, step template, and content template.


Data binding

Bind any object as the ItemsSource and control the last active item.

WPF StepProgressBar data binding.


Step shape

The shape of a step marker can be a circle or square. Custom templates can also be loaded.

WPF StepProgressBar with different step shape.


Status

Show progress with active, inactive, and indeterminate statuses.

WPF StepProgressBar to show status.


Orientation

Visualize the progress of a multiple-step process in horizontal or vertical orientation.

WPF StepProgressBar in horizontal orientation.

Customization

Customize progress bar styles, markers, content, and secondary content using templates.

WPF StepProgressBar with custom template.

WPF StepProgressBar Code Example

Easily get started with the WPF StepProgressBar using a few simple lines of XAML and C# code example as demonstrated below. Also explore our WPF StepProgressBar Example that shows you how to render and configure the StepProgressBar in WPF.

<Syncfusion:SfStepProgressBar SelectedIndex="3">
 <Syncfusion:StepViewItem Content="Ordered" />
 <Syncfusion:StepViewItem Content="Shipped" />
<Syncfusion:StepViewItem Content="Packed" />
<Syncfusion:StepViewItem Content="Delivered" />
</Syncfusion:SfStepProgressBar>
public partial class MainWindow : Window
{
​​​​​​​public MainWindow()
 {
InitializeComponent();
SfStepProgressBar stepProgressBar = new SfStepProgressBar();
StepViewItem orderedStepViewItem = new StepViewItem();
StepViewItem shippedStepViewItem = new StepViewItem();
StepViewItem packedStepViewItem = new StepViewItem();
StepViewItem deliveredStepViewItem = new StepViewItem();
orderedStepViewItem.Content = "Ordered";
shippedStepViewItem.Content = "Shipped";
packedStepViewItem.Content = "Packed";
deliveredStepViewItem.Content = "Delivered";
stepProgressBar.Items.Add(orderedStepViewItem);
stepProgressBar.Items.Add(shippedStepViewItem);
stepProgressBar.Items.Add(packedStepViewItem);
stepProgressBar.Items.Add(deliveredStepViewItem);
stepProgressBar.SelectedIndex = 3; grid.Children.Add(stepProgressBar);
}
}

95+ WPF CONTROLS

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Transform your applications today by downloading our free evaluation version
Download Free Trial No credit card required.

Syncfusion WPF Resources

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Up arrow icon
Live Chat Icon For mobile