Completed
Last Updated: 20 Oct 2014 14:08 by ADMIN
ADMIN
Dimitar
Created on: 22 Jul 2014 10:43
Category: Editors
Type: Bug Report
0
FIX. RadSpellChecker - after spell check is performed on the MS RichTextBox its context menu is not shown any more.
To reproduce:
- Add default .net RichTextBox to a blank form.
- Add a contexmenu strip (again .net one) to the RichTextBox.
- Spell check using RadSpellChecker and you will notice that the menu cannot be opened after that.

Workaround:
void richTextBox1_MouseDown(object sender, MouseEventArgs e)
{
    if (e.Button == System.Windows.Forms.MouseButtons.Right)
    {
        richTextBox1.ContextMenuStrip.Show(this.richTextBox1, e.Location);
    }
}
0 comments