richedit中加右键菜单:复制、粘贴、剪切等基本功能,代码如何写? VCL组件开发及应用http://www.delphi2007.net/DelphiVCL/html/delphi_20061225122434128.html
richedit中加右键菜单:复制、粘贴、剪切等基本功能,代码如何写 ?多给几个基本功能的代码吧!!
RichEdit.CopyToClipboard;
RichEdit.PasteFromClipboard;
RichEdit.CutToClipboard;
个人认为“右键菜单”不应该加在richedit中,由于右键菜单通常和主Form的菜单,工具栏按钮相呼应,所以应该将“右键菜单”放在主Form中!
1楼对