Description
The data source of the Progress Bar widget control.
Architecturally a progress bar widget is divided into data elements, which provide the content of the progress bar, and visual elements, which provide the display and interaction between the data elements and user.
The data elements consist of the following data items:
- the current value of the progress bar
- the current operation string
- a Cancel button
- a WPF progress bar control
- a TextBlock that displays the current value by percentage
- a TextBlock that displays the current operation
The ProgressBarSource class derives from RibbonCommandItem and is responsible for maintaining the following:
- the visibility state of the Cancel button
- the current operation string
- the value that represents the current magnitude
- the minimum value of the progress bar range
- the maximum value of the progress bar range
Class Hierarchy
Autodesk.Windows.RibbonItem Autodesk.Windows.RibbonCommandItem Autodesk.Windows.ProgressBarSource
Visual Basic
Public Class ProgressBarSource Inherits RibbonCommandItem
C#
public class ProgressBarSource : RibbonCommandItem;