OpenFileDialog多选问题

发布于 2024-11-09 15:49:14 字数 404 浏览 0 评论 0原文

我有标准的 OpenFileDialog

var openFileDialog = new OpenFileDialog
{
    DefaultExt = "mpo",
    Filter = "Image file |*.mpo",
    Multiselect = true,
    RestoreDirectory = true,
};

,当我尝试使用它在“fujifilmfinepix real 3d w1”相机上打开多张照片时,它会触发消息框“无法从此位置打开多个项目。尝试选择改为单个项目。”仅打开 1 个文件即可。

当我尝试从硬盘驱动器或其他可移动设备选择照片时,一切正常。

有人遇到同样的问题吗?

I have standart OpenFileDialog

var openFileDialog = new OpenFileDialog
{
    DefaultExt = "mpo",
    Filter = "Image file |*.mpo",
    Multiselect = true,
    RestoreDirectory = true,
};

and when i try to use it to open several photos on "fujifilm finepix real 3d w1" photo camera it fires message box "Cannot open multiple items from this location. Try selecting a single item instead." Opening only 1 file is ok.

When i try to select photos from hard drive or other removable device everything is ok.

Anyone get the same problem?

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

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

发布评论

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

评论(1

最后的乘客 2024-11-16 15:49:14

由于您已经发现从其他位置执行相同操作不会产生任何问题,因此您的相机有问题。

作为应用程序的解决方法,您不应直接在设备上打开所有文件。相反,将所有选定的项目复制到保存位置(临时文件夹下自行创建的文件夹)并从那里打开它们。

Due to the fact that you already found out that doing the same from another location doesn't make any problems, there is something with your camera.

As a workaround for your application you shouldn't open all the files directly on the device. Instead copy all selected items into a save location (a self-created folder below the temp folder) and open them from there.

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