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;
        }