ProgressBar Class
.NET Framework 3.0
Control that an application uses to visually indicate the progress of a lengthy operation.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
System.Windows.Controls Namespace
RangeBase
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
[TemplatePartAttribute(Name="PART_Track", Type=typeof(FrameworkElement))] [TemplatePartAttribute(Name="PART_Indicator", Type=typeof(FrameworkElement))] public class ProgressBar : RangeBase
/** @attribute TemplatePartAttribute(Name="PART_Track", Type=System.Windows.FrameworkElement) */ /** @attribute TemplatePartAttribute(Name="PART_Indicator", Type=System.Windows.FrameworkElement) */ public class ProgressBar extends RangeBase
TemplatePartAttribute(Name="PART_Track", Type=System.Windows.FrameworkElement) TemplatePartAttribute(Name="PART_Indicator", Type=System.Windows.FrameworkElement) public class ProgressBar extends RangeBase
<ProgressBar .../>
This example creates a ProgressBar and uses an animation to simulate the progress of an operation.
ProgressBar progbar = new ProgressBar(); progbar.IsIndeterminate = false; progbar.Orientation = Orientation.Horizontal; progbar.Width = 150; progbar.Height = 15; Duration duration = new Duration(TimeSpan.FromSeconds(10)); DoubleAnimation doubleanimation = new DoubleAnimation(100.0, duration); progbar.BeginAnimation(ProgressBar.ValueProperty, doubleanimation);
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
ProgressBar MembersSystem.Windows.Controls Namespace
RangeBase
Other Resources
ProgressBar SampleCommunity Additions
ADD
Show: