Completed
Last Updated: 28 Sep 2023 12:42 by ADMIN
Release R3 2023

The ShowBalloonTip method allows you to provide a System.Drawing.Icon object to show a custom icon in the balloon notification. However, the method doesn't work when this overload is used. The balloon notification is not displayed at all. 

To work this around, use the predefined BalloonTipIcon icons with the additional overload of the method.

notifyIcon.ShowBalloonTip( "title", "text", BalloonTipIcon.Warning);

Completed
Last Updated: 09 Mar 2023 12:04 by ADMIN
Release R1 2023 SP1
RadNotifyIcon displays a GUID instead of the values set to the ToolTipContent and ToolTipContentTemplate in a project run on a Windows 11 OS.
Completed
Last Updated: 11 Feb 2022 16:00 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)
When a NotifyIcon is run on localized Windows the popup appears at negative coordinates outside of the visible area of the screen.
Declined
Last Updated: 21 Dec 2021 10:11 by ADMIN
The TrayContextMenu is not displayed if the application does not have a MainWindow. If the menu's IsOpen property is set to true in the TrayContextMenuOpening event, however, the menu is shown as expected.
        private void NotifyIcon_TrayContextMenuOpening(object sender, CancelEventArgs e)
        {
            BuildContextMenu(NotifyIcon.TrayContextMenu);
            if (!App.Current.MainWindow.IsLoaded)
                NotifyIcon.TrayContextMenu.IsOpen = true;
        }