在 WPF 中拖放并显示文件

发布于 2024-11-06 23:44:14 字数 145 浏览 1 评论 0原文

如何将图像从客户端计算机拖放到 WPF 应用程序。 例如,将图像文件从文件夹或桌面拖放到 WPF 应用程序,并且拖放的图像应保存并在拖放的窗口中仅显示为图像。 我在这里搜索了与我的问题类似的问题,但找不到我需要的东西。

请帮我!

先感谢您 :)

How to Drop an image from Client Computer to WPF app.
For example dropping image file from a folder or desktop to WPF app and the dropped image should be saved and showed in that dropped window as just an image.
I've searched here similar questions to my question and I couldn't find what I need.

Please help me!

Thank you in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

神也荒唐 2024-11-13 23:44:14

在目标元素中(或在窗口级别)将AllowDrop 属性设置为true。然后为元素或窗口提供 DragDrop 事件处理程序。

在事件处理程序中,您将能够通过以下方式获取文件路径:

e.Data.GetData(DataFormats.FileDrop, true)

现在您知道了文件的位置,您可以对它执行您喜欢的操作。

In target element (or at the window level) set the AllowDrop property to true. Then provide the element or window the DragDrop event handler.

In the event handler you will be able to get the filepath with something like:

e.Data.GetData(DataFormats.FileDrop, true)

Now that you know the location of the file you can do what you like with it.

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