Windows Phone 本地 toast 通知文本换行和图像未显示

Windows Phone local toast notification Text wrapping and image is not showing

在我的应用程序中,从应用程序本身发送 toast 通知。

    ToastTemplateType toastTemplateXml = ToastTemplateType.ToastText03;
    XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(toastTemplateXml);              

    XmlNodeList toastTextAttributes = toastXml.GetElementsByTagName("text");
    toastTextAttributes[0].InnerText = "Welcome to My app! Let us know how you heared about us.";
    string text = DateTime.Now.ToString("MM-dd-yyyy hh:mm:ss",
                    CultureInfo.InvariantCulture);
    toastTextAttributes[1].InnerText = text;
    ToastNotification toast = new ToastNotification(toastXml);
    ToastNotificationManager.CreateToastNotifier().Show(toast);

并且在 document 中显示

ToastText03

One string of bold text wrapped across the first and second lines, one string of regular text on the third line.

但是当它显示时,第一行根本没有换行,它失去了它的尾部。

我需要什么来显示 toast 通知的完整第一行?

没有办法解决这个问题。 Windows Phone 8.12 仅支持 toastText02 模板。此模板在同一行显示应用程序徽标和两个字符串,第一个字符串为粗体。

有关详细信息和示例图片,请参阅 toast template catalog