I have this windows for script

vb.net Code:
  1. Dim Members_XML_Feed As XDocument = XDocument.Load("xml_members.php")
  2.                 For Each Member As XElement In Members_XML_Feed...<Member>
  3.                     Dim ID As String = Member.Element("ID")
  4.                     Dim username As String = Member.Element("Username")
  5.  
  6.  
  7.  
  8.                     Dim u As New ListBoxItem
  9.                     u.Content = username
  10.                     u.Tag = ID
  11.                     MembersList.Items.Add(u)
  12.                 Next

THis does the trick.

HOw can I though bind this information i'm getting from VB and bind it to a WPF DataTemplate?? below is a very basic name version but I would add ID, Name, Username, Email maybe.

wpf Code:
  1. <ListBox Foreground="White" ScrollViewer.VerticalScrollBarVisibility="Hidden" ScrollViewer.CanContentScroll="True" BorderThickness="0" Background="Transparent" x:Name="MembersList"  Grid.Column="0" Grid.Row="1" Grid.RowSpan="2" SelectionMode="Single">
  2.                 <DataTemplate>
  3.                     <TextBlock Text="{Binding Name}" Margin="2" Foreground="White"></TextBlock>
  4.                 </DataTemplate>
  5.  
  6.             </ListBox>