Hello Télérik,
I'm using a RadDesktopAlert in my software.
The declaration :
private void CreateNotification(string header, string content, int dureeEnMillisecondes, int tailleEnPx) { var alert = new RadDesktopAlert(); alert.Header = header; alert.Content = content; alert.Opacity = 0.7; alert.ShowDuration = dureeEnMillisecondes; alert.Height = tailleEnPx; alert.ShowCloseButton = false; //Point pointDeDepart = new Point(0, 20); RadDesktopAlertManager manager = new RadDesktopAlertManager(AlertScreenPosition.BottomRight);//pointDeDepart); manager.ShowAlert(alert); }- Me, and my clients, using 2 or more screens to work.
- For the moment, i'm using AlertScreenPosition.BottomRight and the notification was displayed in the bottom-right of the main screen (where is the windows task bar), even if the screen software is on a other screen.
I want to know if is it possible to display the notification on the current screen (where is the software, or where is the mouse) ?
Thank you very much, I hope be understadable.