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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -