AppNotificationProgressBar.Status Property

Definition

Gets or sets the status text of an app notification progress bar.

public:
 property Platform::String ^ Status { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Status();

void Status(winrt::hstring value);
public string Status { get; set; }
var string = appNotificationProgressBar.status;
appNotificationProgressBar.status = string;
Public Property Status As String

Property Value

String

Platform::String

winrt::hstring

A string containing the status text value.

Remarks

You can also set the status with by calling AppNotificationProgressBar.SetStatus.

The Status value is bound by default. Update the bound status value by assigning an AppNotificationProgressData object to the AppNotification.Progresss property.

For guidance on using the AppNotificationBuilder APIs to create the UI for app notifications, see App notification content.

For reference information about the XML schema for app notifications, see App notification content schema.

Applies to