views:

6

answers:

1

Hi friends

in my mobile 6.5 application i have one check box shown in start of my listview using this code

ListBatch.Columns.Add(" ", 30, HorizontalAlignment.Left);

ListViewItem lvi = new ListViewItem(new string[] {String.Empty,"2","3"});

lvi.Checked = false;

but how can i have two checkboxes????

A: 

You'd have to custom draw the ListView. You might also use a DataGrid and custom format it.

ctacke

related questions