OpenFileDialog Filter for 24-bit C # bitmaps only

Is it possible to filter openFileDialogin C # only for 24-bit bitmaps?

+3
source share
1 answer

As far as I know, no. Perhaps you can add a filter for this in Windows Explorer (using rootkit strategies), but this does not seem very valuable and useful for a real application. Your best bet allows the user to select an image and then check it immediately after closing the dialog box.

+1
source

All Articles