Selectable Objects

  • Thread starter Thread starter Mr. Mike
  • Start date Start date
M

Mr. Mike

I'm trying to create an application very similar to
Windows Explorer using the Thumbnail view.

I've created instances of Pictureboxes within a parent
Groupbox.

How do you create a child object that is selectable? I
want to use yhe mouse to click a picturebox or drag and
drop it to another form.
 
You really need to use an owner drawn list box. It is the most functional way
to create a thumbnail view while getting
all of your normal selection facilities. I'll be posting some sample code on my
blog soon around using asynchronous
thumbnailing to achieve real-time list box views of thumbs. Normally your UI
hangs, but that can be overcome with some
not so obvious code.
 
Back
Top