when right click at the text box,...

when right click at the text box, there are "copy", "paste",..., "Right to left reading order" , "Show unicode control characters" and "Insert unicode control character"

Is there anyone know how to remove the lowest three

i.e. Right to left reading order", "Show unicode control characters", and "Insert unicode control character"

thanks in advance



Answer this question

when right click at the text box,...

  • jfoley

    You would have to create your own ContextMenu or ContextMenuStrip and set the Textbox's ContextMenu or ContextMenuStrip property to that. Then you would have to populate the items you want in there and then emulate the functionality.

    My suggestion is TO NOT do this. You can make your application extremely unaccessible by doing this. Menu options show up in the Windows Default menus per settings. Often timese these menus are adjusted by applications that increase accessibility for users who have certain disabilities or in this case live in different countries and need to use unicode control characters (think japanese/chinese/kanji languages). In this case you have extra options in for Unicode, probably because something you've chosen in the Langauge bar is designed to allow you to input Unicode characters in.

  • TXOSU

    hi, thanks a lot
  • when right click at the text box,...