.net – How to add images as subitems in ListView

netwindows-mobile

I am currently working on a standard windows mobile application. It is
required that we use a ListView, but with images in the sub items.

We need a List View with 3 columns and three rows. I want to show 9 icons on form.

How to add images as subitems in ListView?

I can use picture box but i don't have any event to navigate from one image to another image.

How can I handle it?

Thanks

Best Answer

There is no native support for adding images as subitems in the ListView. If you know that there will always be exactly 3x3 images, why use a ListView? You can simply lay out 9 PictureBox controls on the form and load the icons into them.