📜 ⬆️ ⬇️

Silverlight 4: NotificationWindow

In Silverlight 4, a new object was added - NotificationWindows, which allows you to notify the user about various events. Since it functions as a system message, it will work only when the application is started outside the browser.

Below is an example of working with NotificationWindow.

image

Code
image
')
NotificationWindow Facts

Can I display multiple notifications at the same time?
- Not.

Can a user interact with NotificationWindow?
- Yes, but only with the mouse.

What is the size of the NotificationWindow?
- 400x100.

image

Can I customize the look of the notification window?
- Yes, for this use UserControl.

image

Source: https://habr.com/ru/post/75727/


All Articles