How do I create a form with UI similar to the default windows 7 picture folder view in a C# winform application? -


I am developing a Winform application where I need a form where the thumbnail of the images is given below

I was able to develop the above requirement with the help of a picture box placed in UserControl and programmatically added to my form.

Now, I need a feature where multiple images can be selected together and then deleted, unfortunately, I find it very difficult.

Is there any easier way to resolve this or any readymade control? Enter image details here

I was able to create this UI by using the available ImageListView control from the following article.

ImageListView One to display a list of image files. NET 2.0 has control. This standard list looks and runs similar to view control. The image thumbnail is loaded asynchronous with a different background thread.

The latest control source code is available on

.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -