StatusBarProgressIndicator
StatusBarProgressIndicator
StatusBarProgressIndicator
StatusBarProgressIndicator
Class
Definition
Provides methods and properties for interacting with the progress indicator on the status bar on a window (app view).
public : sealed class StatusBarProgressIndicator : IStatusBarProgressIndicatorpublic sealed class StatusBarProgressIndicator : IStatusBarProgressIndicatorPublic NotInheritable Class StatusBarProgressIndicator Implements IStatusBarProgressIndicator// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows Mobile Extension SDK (introduced v10.0.10240.0)
|
| API contract |
Windows.Phone.PhoneContract (introduced v1)
|
Remarks
Call the StatusBar.ProgressIndicator method to obtain an instance of this class.
Properties
ProgressValue ProgressValue ProgressValue ProgressValue
Gets or sets a value representing progress in the range 0 to 1.
public : IReference<double> ProgressValue { get; set; }public Nullable<double> ProgressValue { get; set; }Public ReadWrite Property ProgressValue As Nullable<double>// You can use this property in JavaScript.
- Value
- IReference<double> Nullable<double> Nullable<double> Nullable<double>
A value representing progress in the range 0 to 1.
Text Text Text Text
Gets or sets the text label displayed on the progress indicator.
public : PlatForm::String Text { get; set; }public string Text { get; set; }Public ReadWrite Property Text As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The text label displayed on the progress indicator.
Methods
HideAsync() HideAsync() HideAsync() HideAsync()
Hides the progress indicator.
public : IAsyncAction HideAsync()public IAsyncAction HideAsync()Public Function HideAsync() As IAsyncAction// You can use this method in JavaScript.
Returns
The asynchronous results of the operation. Use this to determine when the async call is complete.
ShowAsync() ShowAsync() ShowAsync() ShowAsync()
Shows the progress indicator.
public : IAsyncAction ShowAsync()public IAsyncAction ShowAsync()Public Function ShowAsync() As IAsyncAction// You can use this method in JavaScript.
Returns
The asynchronous results of the operation. Use this to determine when the async call is complete.