Is it possible to display an icon in a notification message? I use this code to show the notification, but it doesn't seem to have any property for an image:
MyNotification := NC.CreateNotification;
try
MyNotification.Name := '';
MyNotification.Title := 'Raspberry Pi';
MyNotification.AlertBody := Msg;
NC.PresentNotification(MyNotification);
finally
MyNotification.Free;
end;
Edit: My question is not dupplicate. I need a answer for Windows, not Android, like in the sugested question.