C1SuperTooltip doesnt popup anymore after contextmenu click

Posted by: Ranba790 on 21 March 2018, 10:27 pm EST

    • Post Options:
    • Link

    Posted 21 March 2018, 10:27 pm EST

    When the C1SuperTooltip popup on a control and then you right click on the control with a ContextMenu(while the tool tip is showing up) after that the C1SuperTooltip will not popup anymore.

    If you change the ContextMenu to ContextMenuStrip it will work ok

    Any idea how to fix it beside replacing the ContextMenu to a ContextMenuStrip

    Thanks

  • Posted 22 March 2018, 5:39 pm EST

    Hi Ran!

    As a workaround, you can manually show C1SuperTooltip after the context menu has been collapsed in MouseEnter event handler of the control (say, TextBox).

    bool _flag = true;
    private void TextBox1_MouseEnter(object sender, EventArgs e)
    {
           if(_flag)
                 c1SuperTooltip1.Show(*TipText*, textBox1);
    }
    
    private void ContextMenu1_Popup(object sender, EventArgs e)
    {
            _flag = false;
    }
    
    private void ContextMenu1_Collapse(object sender, EventArgs e)
    {
            _flag = true;
    }
    

    Also, I am reporting this issue with ContextMenu to the concerned team [Internal Id : 315352]. I will let you know once it is fixed.

    Best regards,

    Meenakshi

  • Posted 22 March 2018, 10:03 pm EST

    Thank you

  • Posted 24 April 2018, 2:23 pm EST

    Hi Ran,

    As per the team, this is a limitation with ContextMenu.

    • Meenakshi
Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels