Partager via


AppNotificationProgressBar.SetTitle(String) Méthode

Définition

Définit le texte de titre d’une barre de progression de notification d’application.

public:
 virtual AppNotificationProgressBar ^ SetTitle(Platform::String ^ value) = SetTitle;
AppNotificationProgressBar SetTitle(winrt::hstring const& value);
public AppNotificationProgressBar SetTitle(string value);
function setTitle(value)
Public Function SetTitle (value As String) As AppNotificationProgressBar

Paramètres

value
String

Platform::String

winrt::hstring

Chaîne contenant le texte du titre.

Retours

Retourne l’instance AppNotificationProgressBar afin que des appels de méthode supplémentaires puissent être chaînés.

Exemples

L’exemple suivant montre comment définir la propriété Title d’une barre de progression de notification d’application.

 var notification = new AppNotificationBuilder()
    .AddText("Downloading your weekly playlist...")
    .AddProgressBar(new AppNotificationProgressBar()
        .SetTitle("Progress bar title")
        .SetValue(.5)
        .SetStatus("Downloading...")
        .SetValueStringOverride("1/2 files downloaded"))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

Charge utile XML résultante :

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Downloading your weekly playlist...</text>
            <progress title='Progress bar title' status='Downloading...' value='0.5' valueStringOverride='1/2 files downloaded'/>
        </binding>
    </visual>
</toast>

Remarques

Vous pouvez également définir le titre avec la propriété AppNotificationProgressBar.Title.

Vous pouvez définir le texte de titre à l’aide de la liaison de données en appelant AppNotificationProgressBar.BindTitle. Mettez à jour la valeur d’état liée en affectant un objet AppNotificationProgressData à la propriété AppNotification.Progress.

Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder pour créer l’interface utilisateur pour les notifications d’application, consultez contenu de notification d’application.

Pour plus d’informations sur le schéma XML pour les notifications d’application, consultez schéma de contenu de notification d’application.

S’applique à