如何在富文本框中創建上下文菜單。我想剪切,複製,粘貼選項,當我右鍵單擊富文本如何在富文本框中創建上下文菜單
2
A
回答
3
從MSDN:
Private Sub InitializeMyContextMenu()
' Create the contextMenu and the MenuItem to add.
Dim contextMenu1 As New ContextMenu()
Dim menuItem1 As New MenuItem("C&ut")
Dim menuItem2 As New MenuItem("&Copy")
Dim menuItem3 As New MenuItem("&Paste")
' Use the MenuItems property to call the Add method
' to add the MenuItem to the MainMenu menu item collection.
contextMenu1.MenuItems.Add(menuItem1)
contextMenu1.MenuItems.Add(menuItem2)
contextMenu1.MenuItems.Add(menuItem3)
' Assign mainMenu1 to the rich text box.
richTextBox1.ContextMenu = contextMenu1
End Sub
-1
這篇文章顯示瞭如何添加上下文菜單在運行文本框,還可以實現這與富文本框。試試這個 http://www.authorcode.com/add-contextmenu-with-cutcopy-and-paste-options-to-textbox-in-vb-net/
+0
雖然這可能在理論上回答這個問題,[這將是更可取的](http://meta.stackexchange.com/q/8259)在這裏包括答案的基本部分,並提供參考鏈接。 – Emil 2012-11-16 22:51:43
相關問題
- 1. 如何在上下文菜單中創建子菜單?
- 2. 如何在Windows中創建上下文菜單子菜單?
- 3. Android,如何創建上下文菜單...
- 4. 如何創建Kendo上下文菜單?
- 5. 創建上下文菜單
- 6. 在Android中創建上下文菜單
- 7. 在JfxPane中創建上下文菜單
- 8. 文本框的上下文菜單
- 9. 如何在列表框上右鍵單擊創建上下文菜單?
- 10. 單擊創建上下文菜單
- 11. 如何創建文本菜單和僅文本子菜單?
- 12. 在上下文菜單中創建子菜單
- 13. 如何在C#的富文本框中創建換行符?
- 14. 如何在Twitter中創建上下文菜單?
- 15. 如何創建在C#中的上下文菜單
- 16. 如何在android中創建動態上下文菜單?
- 17. 如何在Angular App中創建自定義上下文菜單?
- 18. 如何在RecyclerView中使用addOnItemTouchListener創建上下文菜單
- 19. 如何在Silverlight 4中使用上下文菜單創建Treeview?
- 20. 如何在狀態欄中創建上下文菜單?
- 21. 如何在C#中的Windows shell上下文菜單中創建子菜單?
- 22. 在菜單項上點擊創建上下文菜單
- 23. 如何在DataGridCell上創建動態上下文菜單
- 24. 如何在MapView上創建上下文菜單?
- 25. 在輸入@時在文本框中彈出上下文菜單
- 26. 下拉菜單創建文本字段
- 27. 使用OSMbonuspack_v5.1創建上下文菜單
- 28. 創建自定義上下文菜單
- 29. OnGestureListener取消創建上下文菜單
- 30. 創建自定義上下文菜單
你實際上需要創建一個`ContextMenu`,而不是`MainMenu`。但是使用`ContextMenu`代替那個看起來很俗氣的`ContextMenuStrip`就是+1。 – 2011-02-05 15:39:02