kendoo
kendoo

Reputation: 229

uwp c# NotificationsExtensions GroupIcon

How do I get this group icon (see image below) appear? In my app, the NotificationsExtensions use for toast notifications, but this icon is not displayed. How can I set it?

enter image description here

Upvotes: 1

Views: 113

Answers (1)

Tóth Tibor
Tóth Tibor

Reputation: 1565

You can specify an image as visual with type AppLogoOverride See also: MSDN Doc

If you don't specify explicit this logo, the system will draw the app's logo from the package.appxmanifest.

Note in the anniversary update (1607 or 14393) the action center UI is quite different.

Image Size – we made some adjustments to the image sizes to make the notification content richer and more informative. The application icon has shrank to 16px by 16px. The AppLogoOverride (when provided) has been enlarged to 48px by 48px. Therefore, make sure your AppLogoOverride image is at least 48px by 48px (and provide higher resolution versions for the different scale factor devices). Blog post

Upvotes: 1

Related Questions