Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set OpenFileDialog to default to Thumbnail view

Tags:

.net

I'm using the OpenFileDialog class so a user can select an image file. I'd like to default the dialog to Thumbnail view mode. Unfortunately the class doesn't have any way to set a default view mode.

Other than creating my own custom dialog (which I may have to do), is there a way to achieve my goal?

like image 954
Dean Hill Avatar asked Nov 05 '22 22:11

Dean Hill


1 Answers

This code project article is what i used a while ago to extend the OFD and SFD, it also links to some other articles which have more detailed explanations

Extend Open and Save File Dialogs
More in depth article

like image 155
Pondidum Avatar answered Nov 15 '22 06:11

Pondidum