Articles in this section
Category / Section

How to disable the context menu in WinForms SyntaxEditor (EditControl)?

1 min read

Hide the context menu

In the EditControl, the Context menu can be displayed by right clicking on its text context, and it can be hidden by using its function ClearMenu. Refer to the following code example.

C#

//To handle MenuFill event, the end user can customize the context menu 
this.editControl1.MenuFill += editControl1_MenuFill;
void editControl1_MenuFill(object sender, EventArgs e)
{
    ContextMenuManager menu = (ContextMenuManager)sender;
    //Clear the menu
    menu.ClearMenu();
}

 

VB

'To handle MenuFill event, the end user can customize the context menu
AddHandler Me.editControl1.MenuFill, AddressOf editControl1_MenuFill
Private Sub editControl1_MenuFill(ByVal sender As Object, ByVal e As EventArgs)
    Dim menu As ContextMenuManager = CType(sender, ContextMenuManager)
    'Clear the menu
    menu.ClearMenu()
End Sub

 

Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/EditControl_ContextMenu13238144081606477610.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied