如何禁用拖放 TRichEdit 或 TRzRichEdit
如何阻止 TRichEdit 中的拖放?德尔福代码 我使用 Rich edit,并且很难阻止拖放功能,特别是从表单外部拖动文本,比如说从 IE 到我的 RichEdit。
How to block the drag and drop in TRichEdit? delphi code
I work with Rich edit and having difficulties on blocking the drag and drop feature specially dragging text from outside the form let say comming from IE to my RichEdit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 MSDN 上的 RevokeDragDrop;
See RevokeDragDrop on MSDN;
尝试更改按键按下/按下事件,将其设置为只读。
onkey down,设置为 richedit1.readonly := false;然后在 keyup richedit1.readonly := true;它有效..它曾经禁用粘贴功能
try changing on key down/ up event setting it to readonly.
onkey down, set it up to richedit1.readonly := false; and then on keyup richedit1.readonly := true; it works.. it evern disbled the paste features