在 .NET 的 Richtextbox 中禁用文件拖放
我使用 .NET richtextbox,并且希望将 EnableAutoDragDrop 属性设置为 True。这允许用户拖放文本、rtf 和图像等。
但是,我需要自己处理放入 richtextbox 中的文件 - 我不希望它们在被放入时作为 OLE 对象嵌入。
我怎样才能克服这个问题?有什么方法可以删除 RichTextBox 中的嵌入文件吗?
(我发现 API DragAcceptFiles 由于某种原因不起作用。)
谢谢!
I use a .NET richtextbox and I want to have the EnableAutoDragDrop property set to True. This allows user to drag&drop text, rtf and images around etc.
However, I need to process files dropped into the richtextbox myself - I do not want them to be embedded as OLE objects when they are dropped.
How can I overcome this? Is there any way to delete embedded files from richtextbox?
(I've found API DragAcceptFiles which doesn't work for some reason.)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试处理
DragDrop
事件。示例。
Try handling the
DragDrop
event.Example.
您可以尝试这篇 MSDN 文章。
如果您不想锁定文件,可以使用IO流。谷歌一下,它会解决你的问题。
You may try this MSDN article.
If you do not wish to lock the file,you can use IO stream. Google it and It will sole your problem.