Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 26 Oct 2015 15:46
Category: RichTextEditor
Type: Feature Request
0
ADD. RadRichTextEditor - add ability to control whether the context menu will be shown when editing a comment
Workaround: 

private void radRichTextEditor1_CommentShowing(object sender, Telerik.WinForms.Documents.UI.CommentShowingEventArgs e)
{
    this.radRichTextEditor1.RichTextBoxElement.ContextMenu.Opened-=ContextMenu_Opened;
    this.radRichTextEditor1.RichTextBoxElement.ContextMenu.Opened+=ContextMenu_Opened;
     
}
 
private void ContextMenu_Opened(object sender, Telerik.WinForms.Documents.UI.Extensibility.ContextMenuPlacementEventArgs e)
{
    this.radRichTextEditor1.RichTextBoxElement.ContextMenu.Hide();
}
0 comments