ProfileMenuItem has no Click parameter while MenuItem does?

No sure why this is, but the behavior for a menu item and profile menu item differ when it comes to handling or even having a Click parameter.

ProfileMenuItems have no Click parameter and actually execute the method from the parents Click arg (Radzen.PanelMenuItem.OnClick() :

        public async System.Threading.Tasks.Task OnClick(MouseEventArgs args)
        {
            if (Menu != null)
            {
                await Menu.Click.InvokeAsync(this); // note Menu is the parent ProfileMenu
            }
        }

While regular menu items allow each menu item to have its own Click parameter (Radzen.MenuItem.OnClick() :

    public async Task OnClick(MouseEventArgs args)
    {
    CODE DELETED FOR BREVITY
                await Parent.Click.InvokeAsync(eventArgs);

               if (Click.HasDelegate)
                {
                    await Click.InvokeAsync(eventArgs); 
                }

Is this the desired behavior? I would think its preferred to have an individual Click parameter for any menu item, panel, standard or profile?

Click event for menu item was added recently:

There is currently no "Click" property on the RadzenProfileMenuItem component.

There is on a standard menu item, but on the Profile menu item.

What is the best way to invoke a method from a RadzenProfileMenu's 'OnClick" event?

Hey @Jason_Kiesel,

Do not open duplicate post or we will have no other option but discontinue your account.