ToastContentBuilder.AddProgressBar Method

Definition

Add a progress bar to the toast.

public Microsoft.Toolkit.Uwp.Notifications.ToastContentBuilder AddProgressBar (string title = default, double? value = default, bool isIndeterminate = false, string valueStringOverride = default, string status = default);
member this.AddProgressBar : string * Nullable<double> * bool * string * string -> Microsoft.Toolkit.Uwp.Notifications.ToastContentBuilder
Public Function AddProgressBar (Optional title As String = Nothing, Optional value As Nullable(Of Double) = Nothing, Optional isIndeterminate As Boolean = false, Optional valueStringOverride As String = Nothing, Optional status As String = Nothing) As ToastContentBuilder

Parameters

title
String

Title of the progress bar.

value
Nullable<Double>

Value of the progress bar. Default is 0

isIndeterminate
Boolean

Determine if the progress bar value should be indeterminate. Default to false.

valueStringOverride
String

An optional string to be displayed instead of the default percentage string. If this isn't provided, something like "70%" will be displayed.

status
String

A status string which is displayed underneath the progress bar. This string should reflect the status of the operation, like "Downloading..." or "Installing...". Default to empty.

Returns

The current instance of ToastContentBuilder

Remarks

More info at: https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/toast-progress-bar

Applies to