从 .NET 应用程序拖放到资源管理器

发布于 2024-09-13 01:57:10 字数 59 浏览 4 评论 0原文

我希望为用户提供将文件从应用程序中的网格和其他控件拖放到资源管理器中的能力。 有什么好的样本/文章吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葵雨 2024-09-20 01:57:10

这非常简单,只需在 MouseDown 事件中调用 DoDragDrop 即可。您需要磁盘上有实际文件才能使其工作。

private void Form1_MouseDown(object sender, MouseEventArgs e) { 
   string[] files = new string[] { @"c:\temp\test.txt" };
   this.DoDragDrop(new DataObject(DataFormats.FileDrop, files), DragDropEffects.Copy); 
}

It's pretty straight-forward, just call DoDragDrop in a MouseDown event. You'll need actual files on disk for this to work.

private void Form1_MouseDown(object sender, MouseEventArgs e) { 
   string[] files = new string[] { @"c:\temp\test.txt" };
   this.DoDragDrop(new DataObject(DataFormats.FileDrop, files), DragDropEffects.Copy); 
}
狂之美人 2024-09-20 01:57:10

下面是一个示例应用程序,但它无法处理大文件: 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#

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文