Earlier in Windows Phone 8.1 I used the ToastPromptprovided coding4fun toolkit. These notifications are inside the application and very neat. Is there something similar for Windows 10 UWP. Since I could not use the same. Used code:
ToastPrompt tp = new ToastPrompt() { Title = "Hi", Message = "Show the message" };
tp.Show();
This works on wp 8.1 winrt, but does not work on win10 Universal.

I was looking for something like this that would not appear in the middle of the action, like a normal toast notification. But I realized that this would be nice with respect to universal applications, so I implemented my own local notification. You can check the app here if you want to see what exactly I had in mind.
source
share