9

我正在尝试在我的 WPF 应用程序中实现功能,以将图像从浏览器拖到我的 WPF 应用程序的窗口中。

该代码在 Firefox 和 Windows 资源管理器中运行良好,但在 Chrome 和 IE 中出现问题(尚未尝试任何其他浏览器)。

这是一个代码片段:

private void Drag_Enter(object sender, DragEventArgs e)
{
    foreach (string format in e.Data.GetFormats())
        Console.WriteLine(format);
    Console.WriteLine("Effects:" + e.AllowedEffects);
}

private void Drag_Drop(object sender, DragEventArgs e)
{
    string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
    ImageSourceConverter converter = new ImageSourceConverter();
    foreach (string file in files)
    {
        if (converter.IsValid(file))
        {
            // Do something with the image
        }
    }
 }

查看输出,似乎 Firefox 实际上将图像保存到剪贴板,而 Chrome 只是抓取图像的 html,而 IE 没有做任何事情。

任何人都对我如何获得跨浏览器功能有一些见解?


更新:我发现的一些解决方法是解析图像源的 html (Chrome/Firefox),然后使用 WebClient 对象之类的东西从源下载。不过,更喜欢一种对文件类型进行更强检查的方法。

IE9 和 Firefox 都具有在拖动非超链接图像时可用的 DeviceIndependentBitmap 文件格式。这似乎是一个更安全的选择,尽管 Chrome 似乎不支持它。对于超链接图像,它也不是那么有用。


使用 Firefox,输出是(Drag_Enter 由于某种原因被触发两次):

text/x-moz-url
FileGroupDescriptor
FileGroupDescriptorW
FileContents
UniformResourceLocator
UniformResourceLocatorW
text/x-moz-url-data
text/x-moz-url-desc
text/uri-list
text/_moz_htmlcontext
text/_moz_htmlinfo
text/html
HTML Format
Text
UnicodeText
System.String
application/x-moz-nativeimage
DeviceIndependentBitmap
FileDrop
FileNameW
FileName
Preferred DropEffect
application/x-moz-file-promise-url
application/x-moz-file-promise-dest-filename
DragImageBits
DragContext
Effects: Link, All

Chrome(drag_enter 也被触发两次):

DragContext
DragImageBits
FileGroupDescriptorW
FileContents
HTML Format
text/html
text/x-moz-url
UniformResourceLocatorW
UniformResourceLocator
Text
UnicodeText
System.String
Effects: Copy, Move, Link

Internet Explorer(再次,drag_enter 触发了两次):

UntrustedDragDrop
msSourceUrl
FileGroupDescriptor
FileGroupDescriptorW
FileContents
UniformResourceLocator
Effects: Link
4

1 回答 1

1

您可以使用 FileGroupDescriptorW 和 FileContent 格式来获取数据。

  • FileGroupDescriptorW 是一个 FileDescriptor 数组,用于描述您的数据(例如:名称、大小、修改时间……)
  • FileContent 包含您的文件内容。

如果您不关心文件名,只需要可以使用的二进制内容

var filestream = (MemoryStream[])dataObject.GetData("FileContents");

如果您想要有关如何使用 FileGroupDescriptor(W) 的更深入的教程,我可以在 codeproject.com 上推荐本教程。它谈到了从 MS Outlook 拖放,但它使用相同的 IDataObject 格式。

于 2012-08-20T13:03:23.363 回答