SaveFileDialog 扩展名重叠

发布于 2024-11-28 16:00:27 字数 385 浏览 1 评论 0原文

我想在我的 SaveFileDialog 中提供多个扩展。我想要以下扩展:

请参阅我发布的答案以获取解决方案。这是一个快速修复 - 也是一个相当愚蠢的错误。

SFD.Filter = "EXE (*.exe) |*.exe |JPEG (*.jpg)|*.jpg | MP3 (*.mp3)|*.mp3 | WAV (*.wav) |*.wav ";

使用上述过滤器,当更改文件类型时,扩展名将附加到文件名中。我希望文件扩展名能够相互替换。

切换文件类型后对话框文件名的示例:

OutputFile.exe .jpg .mp3 .wav

谢谢您的帮助,

Evan

I would like to offer multiple extensions in my SaveFileDialog. I would like to have the following extensions:

Please see my posted answer for the solution. It was a quick fix - and a fairly dumb mistake.

SFD.Filter = "EXE (*.exe) |*.exe |JPEG (*.jpg)|*.jpg | MP3 (*.mp3)|*.mp3 | WAV (*.wav) |*.wav ";

Using the above filter, when the file type is changed, the extension is appended to the filename. I would prefer that the file extensions replace one another.

An example of what the dialog filename might look like after switching file types:

OutputFile.exe .jpg .mp3 .wav

Thank you for any help,

Evan

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

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

发布评论

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

评论(2

迟月 2024-12-05 16:00:27

如果要将所有扩展合并到一个选择筛选器中,请尝试

SFD.Filter = "EXE (*.exe), JPEG (*.jpg), MP3 (*.mp3), WAV (*.wav)|*.exe;*.jpg;*.mp3;*.wav";

作为参考,请查看 MSDN 页面的备注部分 FileDialog.Filter

If you want to combine all extensions to one selection filter, try

SFD.Filter = "EXE (*.exe), JPEG (*.jpg), MP3 (*.mp3), WAV (*.wav)|*.exe;*.jpg;*.mp3;*.wav";

For reference, check out the remarks section of the MSDN page for FileDialog.Filter

一梦浮鱼 2024-12-05 16:00:27

我的原始代码的问题是“|”标记之间有空格。请看我下面的回答进行比较。

SFD.Filter = "EXE (*.exe)|*.exe|JPEG (*.jpg)|*.jpg|MP3 (*.mp3)|*.mp3|WAV (*.wav)|*.wav ";

请注意其中没有空格。

谢谢你,
埃文

The issue with my original code is that I had spaces between the " | " marks. Please see my answer below for a comparison.

SFD.Filter = "EXE (*.exe)|*.exe|JPEG (*.jpg)|*.jpg|MP3 (*.mp3)|*.mp3|WAV (*.wav)|*.wav ";

Notice how there are no spaces.

Thank you,
Evan

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