OpenFileDialog Filter属性设置所有图片格式

OpenFileDialog _dialog = new OpenFileDialog();

_dialog.Filter = 
"All Image Files|*.bmp;*.ico;*.gif;*.jpeg;*.jpg;*.png;*.tif;*.tiff|"
"Windows Bitmap(*.bmp)|*.bmp|"
"Windows Icon(*.ico)|*.ico|"
"Graphics Interchange Format (*.gif)|(*.gif)|"
"JPEG File Interchange Format (*.jpg)|*.jpg;*.jpeg|"
"Portable Network Graphics (*.png)|*.png|"
"Tag Image File Format (*.tif)|*.tif;*.tiff";

if (DialogResult.OK == _dialog.ShowDialog(this))
{

}
posted @ 2012-03-19 22:26  跟着阿笨一起玩.NET  阅读(10036)  评论(1编辑  收藏  举报