从 .NET 应用程序拖放到资源管理器
我希望为用户提供将文件从应用程序中的网格和其他控件拖放到资源管理器中的能力。 有什么好的样本/文章吗?
I'm looking to provide users with ability to drag&drop files from grids and other controls in my application into Explorer.
Any good samples/articles for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这非常简单,只需在 MouseDown 事件中调用 DoDragDrop 即可。您需要磁盘上有实际文件才能使其工作。
It's pretty straight-forward, just call DoDragDrop in a MouseDown event. You'll need actual files on disk for this to work.
下面是一个示例应用程序,但它无法处理大文件: Transferring Virtual Files to Windows Explorer in C#
Here is a sample application but it cannot handle large files: Transferring Virtual Files to Windows Explorer in C#