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????
From stackoverflow
-
You'd have to custom draw the ListView. You might also use a DataGrid and custom format it.
0 comments:
Post a Comment