Question : Problem: Windows mobile development. Visual design of app?

I'm working on a windows mobile app. and the code base is done now.

I want to display a list of coworkers with a status in front of the name.
The status should be a icon, and i need the ability to click on a coworker to get additional information.

I have been looking at a the datagrid component, but can't really make it display it the way i want.

Any ideas on this is welcome.

Best regards
Sylvester Nielsen

Answer : Problem: Windows mobile development. Visual design of app?

I think you are right, but i cannot display the images.
It just shows a blank space in front of the text.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
ImageList imageList = new ImageList();
            foreach (var item in bs.getPhonebook())
            {
                imageList.Images.Add(new Bitmap(bs.getAppliocationdirectory() + "/images/online.jpg"));
                string[] listItem = new String[1];
                listItem[0] = item.name;
                ListViewItem li = new ListViewItem(listItem);
                listView1.Items.Add(li);
            }
            listView1.SmallImageList = imageList;
            listView1.LargeImageList = imageList;
Open in New Window Select All
Random Solutions  
 
programming4us programming4us