Hello Brian,
This is happening because NRichTextBox has build in Context menu, and when the control is focused and you right click on it it shows both.
Currently, you can disable this context menu by overriding WndProc as follows:
public class MyNRichTextBox : NRichTextBox
{
protected override void WndProc(ref Message m)
{
if (m.Msg != Nevron.Interop.Win32.NWMConstants.WM_RBUTTONUP)
{
base.WndProc(ref m);
}
}
}
In the next release we will add a new property which turns it on and off.
Best Regards,
Nevron Support Team