AppNotificationProgressBar.Title Property

Definition

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

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

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

Property Value

String

Platform::String

winrt::hstring

A string containing the title text value.

Remarks

You can also set the title by calling AppNotificationProgressBar.Title.

You can set the title text using data binding by calling AppNotificationProgressBar.BindTitle. 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