在 WPF 中拖放并显示文件
如何将图像从客户端计算机拖放到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在目标元素中(或在窗口级别)将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.