AppNotificationProgressBar.Status Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.