Loading...
Loading...
Implement Syncfusion WPF SfLinearProgressBar for horizontal or vertical linear progress indicators. Use this when building determinate progress displays, indeterminate loading bars, buffer/secondary progress, or segmented progress bars in WPF. Covers RangeColors, gradient progress, IndicatorPadding, IndicatorCornerRadius, and IsIndeterminate using Syncfusion.SfProgressBar.WPF.
npx skill4agent add syncfusion/wpf-ui-components-skills syncfusion-wpf-linear-progressbarSyncfusion.SfProgressBar.WPFSyncfusion.UI.Xaml.ProgressBarhttp://schemas.syncfusion.com/wpfSfLinearProgressBar<Window xmlns:Syncfusion="http://schemas.syncfusion.com/wpf">
<Grid x:Name="grid">
<Syncfusion:SfLinearProgressBar
Progress="70"
Width="500"
Height="20" />
</Grid>
</Window>using Syncfusion.UI.Xaml.ProgressBar;
SfLinearProgressBar linear = new SfLinearProgressBar();
linear.Progress = 70;
linear.Width = 500;
linear.Height = 20;
grid.Children.Add(linear);Syncfusion.SfProgressBar.WPFProgressIsIndeterminate="True"SecondaryProgressSecondaryProgressColorIndicatorCornerRadiusIndicatorPaddingProgressColorTrackColorRangeColorsRangeColorStartEndColorRangeColor.IsGradientAnimationDurationAnimationEasingSegmentCount| Property | Type | Default | Purpose |
|---|---|---|---|
| | | Current progress value (0–100) |
| | | Indeterminate bouncing animation |
| | | Buffer/secondary progress value |
| | theme | Color of the buffer bar |
| | theme | Color of the progress bar |
| | theme | Color of the background track |
| | | Rounded ends on progress bar |
| | | Gap between track and indicator |
| | | Number of segments (0 = none) |
| | | Indeterminate animation cycle time |
ProgressIsIndeterminate="True"SecondaryProgressProgressSegmentCountRangeColorsIndicatorCornerRadius="10"