How can I use multiple file extensions within one group using OpenFileDialog
?
I have Filter = "BMP|*.bmp|GIF|*.gif|JPG|*.jpg|PNG|*.png|TIFF|*.tiff"
and I want to create groups so JPG are *.jpg and *.jpeg, TIFF are *.tif and *.tiff and also 'All graphic types'? How can I do that?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Try:
Then do another round of copy/paste of all the extensions (joined together with
;
as above) for "All graphics types":Based on First answer here is the complete image selection options:
This is from MSDN sample:
So for your case