Click to See Complete Forum and Search --> : Listview


shers
May 27th, 2009, 07:18 AM
Hi,

How do I add a subitem to a listview in WPF? I do not see any subitem in it.

Thanks

gurge60
May 27th, 2009, 04:10 PM
Look into using the ItemTemplate for the ListView. This defines what controls will be rendered for each item. Check out MSDN (http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemtemplate.aspx) for more details. If your new to WPF and templating in general, definitely search around and read up on those topics.

shers
May 28th, 2009, 01:16 AM
My ListView control is not bound. I did code this way.


Dim lvi As New System.Windows.Forms.ListViewItem
For Each blk In blks
If blk.IsXRef Then
Dim intIndex As Integer = Array.IndexOf(Src, blk.Name.ToString)
If intIndex >= 0 Then
lvi.Text = blk.Name
lvi.SubItems(0).Text = "test"
LV.Items.Add(lvi)
End If
End If
Next

But the result I get in the ListView is

ListViewItem:{test} ListViewItem:{test}

What could be wrong?

gurge60
May 29th, 2009, 05:47 PM
I don't think I am following you very well. I assumed from your original post that you were trying to take some existing Windows Forms code and port it over to WPF. Are we both talking WPF here or did you mean Windows Forms all along? Your right in that the WPF ListViewItem does not have SubItems like Forms do.

Do you have any WPF code written yet that you could share as a starting point?

shers
May 31st, 2009, 12:55 AM
Thanks for your reply. I managed to solve it.

I created a Datatable and filled rows of the table like this

tbl.Rows.Add(blk.Name, dwgFile)

Then I assigned the datatable to the listview and the problem is solved.

Thanks