0

Just had the last hours looking for an answer but couldn't find out, so I have no choice but to ask it.

I have a C# app which pops up toast notification. Within these, I've used "appOverrideLogo" to change the displayed image, so the toast shows the application identity below it's content.

But with application id comes it's culture. Does anyone know a way to hide this last one ?

Edit :

Here is the visual.

I'd like to hide "Culture=neutral" at the right of "Application".

  • Could you please provide an example of what you're seeing? – Dan Wilson Jul 11 '18 at 15:25
  • @DanWilson Just edited to show the visual. – Olivier GRACIANNE Jul 12 '18 at 11:44
  • I have never seen that before. What code are you using to build and display the notification? – Dan Wilson Jul 12 '18 at 13:55
  • Sorry for late answer. `var xDoc = new XDocument( new XElement("toast", new XElement("visual", new XElement("binding", new XAttribute("template", "ToastGeneric"), new XElement("text", "Nouvelle notification"), ... [content and closing tags]; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xDoc.ToString()); var toast = new ToastNotification(xmlDoc);` This builds. This displays : `ToastNotificationManager.CreateToastNotifier(appId.ToString()).Show(toast);` That's why I don't get it. There's nothing fancy in there. – Olivier GRACIANNE Jul 18 '18 at 08:48

0 Answers0